/* styles.css */

body {
    font-size: 14px;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
}
h1 {
    text-align: center;
    color: #333;
    margin: 20px 0;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #4CAF50;
    padding: 10px;
}
nav a {
    color: white;
    text-decoration: none;
    padding: 10px;
    display: flex;
    align-items: center;
}
nav a i {
    margin-right: 8px;
}
nav .menu-button {
    display: none;
    color: white;
    cursor: pointer;
}
.menu {
    display: flex;
    justify-content: space-around;
    width: 100%;
}
@media (max-width: 600px) {
    nav .menu-button {
        display: block;
    }
    nav .menu {
        display: none;
        flex-direction: column;
        width: 100%;
    }
    nav .menu a {
        padding: 10px;
        text-align: center;
    }
    nav .menu.active {
        display: flex;
    }
}
table {
    width: 90%;
    margin: 20px auto;
    border-collapse: collapse;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
}
th, td {
    border-bottom: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}
tr:nth-child(even) {
    background-color: #f9f9f9;
}
th {
    background-color: #4CAF50;
    color: white;
}
tr.header {
    background-color: #E6F6E5;
    color: white;
}
tr td:first-child {
    color: #333;
    cursor: pointer;
}
.highlight {
    background-color: #ffdddd;
}
@media only screen and (max-width: 600px) {
    body {
        font-size: 10px;
    }
    table, th, td {
        padding: 6px;
    }
}
@media only screen and (min-width: 601px) and (max-width: 1024px) {
    body {
        font-size: 12px;
    }
    table, th, td {
        padding: 8px;
    }
}
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
    padding-top: 60px;
}
.modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    animation: fadeIn 0.4s;
}
@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}
.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

