k/* style.css */
body {
    font-family: Arial, sans-serif;
    margin: 20px;
    background-color: #f9f9f9;
}

h1 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

th, td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

th {
    background-color: #007BFF;
    color: white;
    cursor: pointer;
}

th:hover {
    background-color: #0056b3;
}

tr:nth-child(even) {
    background-color: #f2f2f2;
}

tr:hover {
    background-color: #ddd;
}

a {
    color: #007BFF;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Background colors for specific columns */
td[style*="background-color: lightblue"] {
    background-color: lightblue !important;
}

td[style*="background-color: lightgreen"] {
    background-color: lightgreen !important;
}

td[style*="background-color: yellow"] {
    background-color: yellow !important;
}

td[style*="background-color: lightcoral"] {
    background-color: lightcoral !important;
}

td[style*="background-color: darkred"] {
    background-color: darkred !important;
    color: white;
}

td[style*="background-color: purple"] {
    background-color: purple !important;
    color: white;
}

td[style*="background-color: darkgray"] {
    background-color: darkgray !important;
    color: white;
}

td[style*="background-color: #CFFAFC"] {
    background-color: #CFFAFC !important;
}
