
    body {
        background-color: #000;
        color: white;
        font-family: Arial, sans-serif;
        margin: 0;
        padding: 0;
    }
    header {
            text-align: center;
            margin: 20px 0;
            color: white; /* Adjust the color as needed */
        }
    form {
        margin: 0 auto;
        padding: 20px;
        max-width: 600px;
    }
    label, select, input {
        margin-bottom: 10px;
        font-size: 15px; /* Standard font size */
        padding: 6px; /* Standard padding */
        border-radius: 4px; /* Rounded borders */
    }
    .results {
        margin: 0 auto;
        padding: 0px;
        width: 100%;
        max-width: 600px;
    }
table {
    background-color: #555;
    border-collapse: collapse;
    margin: 0 auto;
    padding-top:20px;
}

th, td {
    width: 50px;
    height: 50px;
    text-align: center;
    vertical-align: middle;
    padding: 0;
    border: 1px solid black;
}
th {
	font-size: 13px;
	white-space: nowrap;
}

/* CSS for Images in Table */
table img {
    max-width: 100%;
    max-height: 100%;
    height: auto;
    width: auto;
    margin: auto;
    display: block;
}
    @media (max-width: 720px) {
        label, input, button, th, td {
            font-size: 13px; /* Increased font size for mobile */
        }
        input[type="text"], button {
            border: 2px solid #ccc;
        }
    }


	}
	label, input, button, th, td {
		font-size: 15px; /* Increased font size for mobile */
	}
	input[type="text"], button {
		border: 2px solid #ccc;
	}


/* CSS for Bottom Menu */
.bottom-menu {
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: fixed;
    max-width:960px;
    bottom: 0;
    width: 100%;
    background-color: #333; /* Or any color of your choice */
    color: white;
    padding: 40px 0;
}

.menu-item {
    text-decoration: none;
    color: white; /* Adjust text color as needed */
    font-size: 15px;
}

.content-div{
	margin: 0 auto;
}
a{text-decoration:none;}

.nav-link
{
	/*width:280px;*/
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;
	width:80%;
	text-align:center;
	color:white;
	line-height:49px;
	font-size:18px;
	font-family:Arial,Helvetica,sans-serif;
	margin:0px 0px 10px 0px;
	border: 1px solid rgba(127,127,127,0.5);
	border-radius: 10px;
	background: -webkit-linear-gradient(-75deg,  rgba(109,109,109,0.65) 0%,rgba(88,88,88,0.65) 35%,rgba(0,0,0,0.8) 65%,rgba(0,0,0,0.8) 100%);
	cursor:pointer;
}

.modal {
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  display: flex;
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
  background-color: #555555;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 90%;
  max-width: 500px;
  text-align: ;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.close-button {
  background-color: #4CAF50;
  color: white;
  padding: 14px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  transition: background-color 0.3s ease;
}

.close-button:hover {
  background-color: #45a049;
}

/* Mobile optimization */
@media screen and (max-width: 600px) {
  .modal-content {
    width: 95%;
    padding: 15px;
  }

  .close-button {
    padding: 16px;
    font-size: 18px;
  }
}

/* Contact page styles */
        /* Styling for the links */
        #contactContent a {
            color: #32cd32;
            text-decoration: none;
            font-weight: bold;
            transition: color 0.3s ease;
        }
        /* Hover effect for the links */
        #contactContent a:hover {
            color: #32cd32; /* Change color on hover for emphasis */
            text-decoration: underline;
        }
/* End Contact page styles */
        /* Styling for headings */
        .content-div h3 {
            color: #32cd32; /* Bright green for headings */
            margin-bottom: 15px;
            font-size: 22px;
            border-bottom: 2px solid #32cd32;
            padding-bottom: 5px;
        }
        /* Styling for the text */
        .content-div p,
        .content-div ul {
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 10px;
        }
        /* Styling for lists */
        .content-div ul {
            list-style-type: disc;
            margin-left: 20px;
        }
        /* Styling for important notes */
        .content-div .note {
            color: #ff6347; /* Highlighted color for notes */
            font-weight: bold;
        }
        /* Styling for subheadings */
        .content-div .subheading {
            color: #32cd32; /* Bright green for subheadings */
            font-size: 18px;
            margin-top: 15px;
            margin-bottom: 5px;
        }



