/* === BASIC PAGE STYLING === */

body.Gyvano {
    background-color: rgb(225, 225, 0);
    margin: 0;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

/* === NAVIGATIE === */

nav {
    height: 70px;
    background-color: white;
    box-shadow: 0 6px 5px -2px rgba(0,0,0,.25);
    display: flex;
    align-items: center;
    padding: 0 14px;
    gap: 10px;
    position: sticky;
    top: 0;
    z-index: 100;
}

#logo {
    height: 50px;
    margin-right: 10px;
}

.nav-buttons {
    background-color: white;
    color: #006241;
    cursor: pointer;
    padding: 10px 14px;
    text-decoration: none;
    font-size: 14px;
    border-radius: 8px;
    font-weight: 600;
    transition: transform .15s ease, background-color .15s ease;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.nav-buttons:hover {
    background-color: #e7f5ec;
    transform: translateY(-3px);
}

.nav-buttons:hover{
    background-color: rgb(225, 225, 225);
}
.dropdown-items{
    display: none;
    position: absolute;
    z-index: 1;
    margin-top: 110px;
    width: auto;
    border-radius: 5px;
}
.dropdown-items a:hover{
    background-color: rgb(225, 225, 225);
}
.dropdown-items a{
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    justify-content: center;  
    color: rgb(0, 98, 65);
    text-decoration: none;
    display: block;
    font-size: 17px;
    display: flex;
    height: 35px;
}
.dropdown{
    display: flex;
    align-items: center;
    justify-content: center;
}
.dropdown:hover .dropdown-items{
    display: block;
    background-color: white;
    box-shadow: 0 4px 2px -2px rgba(0,0,0,.1);
    border: 2px solid rgba(0, 0, 0, 0.15);
  }

/* === TITEL === */

.h1 {
    background-color: rgb(0, 98, 65);
    color: white;
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    padding: 12px 0;
    width: 80%;
    margin: 40px auto 20px auto;
    border-radius: 40px;
}

/* === ROOSTER CONTAINER === */

.rooster-container {
    background-color: rgb(0, 98, 65);
    color: white;
    width: 85%;
    margin: 0 auto 40px auto;
    padding: 30px 40px;
    border-radius: 40px;
    text-align: center;
}

/* === TABEL === */

.rooster-tabel {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background-color: white;
    color: black;
    border-radius: 20px;
    overflow: hidden;
}

.rooster-tabel th,
.rooster-tabel td {
    border: 1px solid rgb(180, 180, 180);
    padding: 10px;
    text-align: center;
}

.rooster-tabel .titel {
    background-color: rgb(0, 98, 65);
    color: white;
    font-size: 22px;
    font-weight: bold;
    height: 50px;
}

.rooster-tabel th {
    background-color: rgb(230, 230, 230);
    font-weight: bold;
}

.rooster-tabel td {
    height: 40px;
    font-size: 15px;
}

/* Om "XXXX" goed te laten opvallen */
.rooster-tabel td:contains("XXXX") {
    font-weight: bold;
}

/* === FOOTER === */

.footer {
    text-align: center;
    padding: 20px 0;
    font-size: 14px;
    margin-top: 40px;
}
