body {
  margin: 0;
  font-family: monospace, Arial, sans-serif;
  background: url("../IMG_4210.JPG");
  background-size: cover;
  color: white;
}

.menu-container {
  position: relative;
}

.button-container {
  display: flex;
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 2; /* Ensure buttons are on top */
}

.hamburger,
.fullscreen {
  font-size: 30px;
  border: none;
  background: #333;
  color: #fff;
  padding: 10px;
  cursor: pointer;
  margin-right: 10px; /* Space between buttons */
}

.side-menu {
  position: fixed;
  top: 0;
  left: -700px; /* Initially hidden off-screen */
  width: 700px;
  height: 100%;
  background: #333;
  color: #fff;
  transition: left 0.3s ease;
  padding-top: 60px; /* Space for the buttons */
  z-index: 1; /* Ensure menu is below the buttons */
  overflow-y: scroll;
}

.side-menu ul {
  list-style: none;
  padding: 0;
}

.side-menu ul li {
  padding: 15px;
}

.side-menu ul li a {
  color: #fff;
  text-decoration: none;
  display: block;
}

.side-menu ul li a:hover {
  background: #575757;
}

main {
  /* margin-left: 270px; Adjust based on the side menu width */
  padding: 20px;
}

.namelist-container {
  width: 100%;
  display: flex;
}

textarea {
  width: 100%;
  min-height: 500px;
  overflow-y: scroll;
  margin-bottom: 1rem;
}

.hidden {
  display: none;
}
.visible {
  display: block;
}

#mainTitle{
    font-size: 50px;
    margin-bottom: 0px;
}

.danger{
    background-color: red;
    color: white;
    padding: 10px;
    border: none;
    outline: none;
    border-width: 0px;
    margin-left: -1rem;
    margin-top: 1rem;
}

button {
  appearance: none;
  border: 2px solid #1A1A1A;
  border-radius: 10px;
  box-sizing: border-box;
  cursor: pointer;
  margin: 0;
  /* font-size: 16px;
  font-weight: 600; */
  /* line-height: normal; */
  /* min-height: 60px; */
  /* min-width: 0; */
  outline: none;
  padding: 5px 10px;
  transition: all 300ms cubic-bezier(.23, 1, 0.32, 1);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  will-change: transform;
}

button:disabled {
  pointer-events: none;
}

button:hover {
  box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px;
  transform: translateY(-2px);
}

.button:active {
  box-shadow: none;
  transform: translateY(0);
}
  
  .menu-wrapper {
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 20px; 
}

input{
  width: 100%;
  height: 29px;
  border-radius: 5px;
  padding: 5px 0px;
  border-width: 0px;
}

select{
  height: 29px;
  width: 100%;
  border-radius: 5px;
  border-width: 0px;
  margin-bottom: 1rem;
}

label{
  display: block;
  margin-bottom: 1rem;
}

.float-right{
  float: right;
}

.box{
  height: auto;
  border-radius: 5px;
  padding: 10px 10px 10px 10px;
  border: 1px solid lightgray;
  margin: 5px;
}

input[type="file"] {
  height: 29px;
  width: 100%;
  border-radius: 5px;
  border-width: 0px;
  margin-bottom: 1rem;
}

.heading-one{
border-bottom: 2px solid white;
    padding-bottom: 5px;
    margin-top: 0px;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.columns {
  column-count: 2;
  column-gap: 0px;
  column-rule: 2px none #3366FF;
}

.row {
  column-count: 1;
  column-gap: 0px;
  column-rule: 2px none #3366FF;
}

.max-500{
  max-width: 500px;
}

.mg-bottom-3{
  margin-bottom: 3rem;
}

p{
  margin: 5px 0px;
}

.start-text{
  text-align: center;
  animation: blinkAnim 2s linear 0s infinite normal none;
}

.text-center{
  text-align: center;
}

@keyframes blinkAnim {
	0%,
	50%,
	100% {
		opacity: 1;
	}

	25%,
	75% {
		opacity: 0;
	}
}