/* General Page Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: black; /* Set the background color to black */
    color: white;
    display: flex;
    flex-direction: column;
    height: 100vh;
    text-shadow: 0 0 10px #ff00ff, 0 0 20px #ff1493, 0 0 30px #ff69b4;
    font-size: 3rem;
    font-weight: bold;
}

/* Main Section */
main {
    display: flex;
    flex-direction: column; /* Vertical stacking of elements */
    align-items: center;
    justify-content: center;
    margin-top: 100px; /* Offset for the fixed header */
    padding: 20px;
    text-align: center;
}

/* Contact Form Styling */
.contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 400px;
    margin: 20px auto;
    padding: 20px;
    background-color: #f28ab2; /* Pink background for the form */
    color: white; /* White text inside the form */
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.contact-form label {
    margin-top: 8px;
    font-weight: bold;
    color: white; /* White text for labels */
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    color: #333; /* Dark text for input */
    background-color: white; /* White background for inputs */
}
.contact-form textarea {
    resize: none; /* Prevent textarea resizing */
    height: 60px; /* Reduce textarea height */
}

.contact-form button {
    background-color: white; /* White button background */
    color: #f28ab2; /* Pink text for button */
    border: 2px solid #f28ab2; /* Pink border */
    cursor: pointer;
    margin-top: 10px;
    padding: 8px 10px;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s, box-shadow 0.3s ease-in-out;
}

.contact-form button:hover {
    background-color: #f28ab2; /* Pink background on hover */
    color: white; /* White text on hover */
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3);
}

/* View All Submissions Section */
.view-submissions a {
    color: #f28ab2; /* Pink link text */
    font-size: 1.5rem; /* Adjust font size */
    font-weight: bold;
    text-decoration: none;
    text-shadow: 0 0 10px #ff00ff, 0 0 20px #ff1493, 0 0 30px #ff69b4;
}

.view-submissions a:hover {
    text-decoration: underline;
    color: #fff; /* White text on hover */
}

/* Button Styles for Load Latest and Load Responses */
button {
    background-color: #f28ab2; /* Pink background */
    color: white; /* White text */
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    font-weight: bold;
    margin: 10px; /* Spacing between buttons */
}

button:hover {
    background-color: white; /* White background on hover */
    color: #f28ab2; /* Pink text on hover */
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3);
}

/* Load Responses Section */
#responses-section h2 {
    color: #f28ab2; /* Pink text for the section heading */
    font-size: 2rem;
    margin-bottom: 10px;
    text-shadow: 0 0 10px #ff00ff, 0 0 20px #ff1493, 0 0 30px #ff69b4;
}

/* Ready State Messages */
#ready1,
#ready2,
#ready3,
#ready4,
#server-response {
    margin-top: 10px;
    font-size: 1rem;
    color: white; /* White text for messages */
    background-color: #4B0082; /* Purple background */
    padding: 5px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}





/* Report Table Styling */
table {
    width: 80%;
    margin: 20px auto;
    border-collapse: collapse;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Add elevation to the table */
}

table th,
table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
    font-size: 14px;
}

table th {
    background-color: #f28ab2; /* Softer pink for headers */
    color: white;
    text-align: center; /* Center-align header text */
}

table tr:nth-child(even) {
    background-color: #ffe6e6; /* Alternating row colors */
}

/* Footer Styling (if needed) */
footer {
    background-color: #f28ab2; /* Match the header */
    color: white;
    text-align: center;
    padding: 10px 0;
    font-size: 0.9rem;
}

.labs-breakdown{
  display: none;  
}

.ajax-section {
    text-align: center;
    margin-top: 20px;
    padding: 20px;
    background-color: #ffe6e6; /* Match the site's color scheme */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.ajax-section button {
    background-color: #f28ab2;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.ajax-section button:hover {
    background-color: #ffd6f0;
}

#ajax-result {
    margin-top: 20px;
    text-align: left;
}
.show {display: block;}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  overflow: auto;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {background-color: #f1f1f1}
