/* styles.css */

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 20px;
}

#mainHeading {
    color: blue; /* Change the color to blue */
    text-align: center; /* Center-align the text */
}

h2 {
    color: green;
}

p {
    color: green;
}

table {
    border-collapse: collapse;
    width: 50%;
}

th, td {
    border: 1px solid #dddddd; /* Border color for inner lines */
    padding: 8px;
    text-align: left;
}

th {
    background-color: #f2f2f2;
}

/* Optional: Add background color to alternate rows for better readability */
tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* Apply the style to images with the "move-down" class*/
.move-down {
    margin-top: 0px; /* Adjust the value to set the desired space */
}

/* Styles for the modal */
.popup-container {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.flash {
    color: red;
    animation: flash 3s infinite;
}

@keyframes flash {
  0%, 50%, 100% { opacity: 1; }
  25%, 75% { opacity: 0; }
}
