/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Georgia, serif;
}

/* Page background */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: rgb(4, 136, 96);
    color: rgb(68, 68, 68); /* Dark gray for readability */
}

/* Form container */
.form-container {
    background: rgb(252, 252, 190);
    padding: 30px;
    width: 100%;
    max-width: 700px;
    border-radius: 20px;
    box-shadow: 2px 5px 15px rgba(0, 0, 0, 0.1);
}

/* Admin login container */
.login-container {
    background: rgb(252, 252, 190);
    padding: 30px;
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Form title */
.form-container h2,
.login-container h2 {
    margin-bottom: 10px;
    font-size: 1.8em;
    color: #444444;
    text-align: center;
}

/* Label and input styling */
label, span {
    display: block;
    font-size: 1em;
    color: #444444;
    margin-bottom: 2px;
}

input[type="text"],
input[type="email"],
input[type="file"],
input[type="date"],
input[type="password"],
textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
    transition: border-color 0.3s;
}

/* Focused input style */
input[type="text"]:focus,
input[type="email"]:focus,
input[type="file"]:focus,
input[type="date"]:focus,
input[type="password"]:focus,
textarea:focus {
    border-color: rgb(6, 124, 10);
    outline: none;
}

/* Textarea styling */
textarea {
    resize: vertical;
    min-height: 120px;
}

/* Submit button */
.submit-btn {
    display: block;
    width: 30%;
    padding: 15px;
    font-size: 1em;
    font-weight: bold;
    color: #fff;
    background-color: #0e8114;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin: 50px auto; /* Centers the button */
}

/* Button hover effect */
.submit-btn:hover {
    background-color: #22d42b;
}

/* Responsiveness */
@media (max-width: 600px) {
    .form-container,
    .login-container {
        padding: 20px;
    }
}

/* Adjust space for tabbed labels */
.tabbed-label {
    padding-left: 30px; /* Adjust this value to simulate the tab space */
    
}

/* Styling for the date input field */
input[type="date"] {
    font-size: 1em;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    width: 100%;
    transition: border-color 0.3s;
}

/* Focused date input style */
input[type="date"]:focus {
    border-color: rgb(6, 124, 10);
    outline: none;
}

/* Line spacing for text in the Submission Guidelines page */
h3, p, ul, ol {
    line-height: 1.6; /* Increases line height */
    margin-bottom: 15px; /* Adds extra space after each element */
}

ul, ol {
    margin-left: 20px; /* Adds indent to list items */
}

ul {
    margin-bottom: 20px; /* Adds space after bulleted list */
}

ol {
    margin-top: 20px; /* Adds space before numbered list */
}

/* Adjust space between list items */
ul li, ol li {
    margin-bottom: 10px; /* Adds space between each item in the list */
}

/* Additional line-height for better readability */
ul, ol {
    line-height: 1.8; /* Increases line height for the whole list */
}
.tabbed-content p {
    margin-left: 30px; /* Indents the lines */
    text-indent: 10px; /* Adjusts bullet alignment */
    padding-left: 20px;
    line-height: 1.0;
    color: #444444; /* Slightly softer for readability */
}

#easter-egg {
    display: none;
    position: fixed;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 10px;
    border-radius: 5px;
    font-size: 14px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

/* Style the dropdown */
#docDownload {
    padding: 8px;
    font-size: 1em;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #fff;
    color: #131313;
    cursor: pointer;
}

/* Style dropdown on hover/focus */
#docDownload:hover, #docDownload:focus {
    border-color: rgb(6, 124, 10);
    outline: none;
}

/* Style the links */
a {
    text-decoration: none;
    color: #067c0a;
    font-weight: bold;
}

a:hover {
    color: #127a18;
}


.collapsible {
    background-color: #f1f1f1; /* Light background */
    color: #333; /* Text color */
    cursor: pointer;
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-weight: bold;
    display: flex;
    /* justify-content: space-between; */
    align-items: center;
}

.collapsible:hover {
    background-color: #e0e0e0;
}

.content {
    display: none;
    padding: 10px 15px;
    border-left: 3px solid #007bff; /* Highlight bar */
    background-color: #fafafa;
    margin-top: 5px;
    border-radius: 10px;
}

/* .active {
    display: block;
}
 */