:root {
    --colors-background: #0F0F0F;
    --colors-background-light: #191919;
    --colors-background-lighter: #1E1E1E;
    --colors-text: #FFF;
    --colors-nav-link: #FFF;
    --colors-link: #F1C232;
    --colors-link-hover: #bd9a2a;
    --colors-text-footer: #c8c8c8;
    --colors-danger: #f00;

    --font-size-tiny: 0.25rem;
    --font-size-very-small: 0.5rem;
    --font-size-small: 0.75rem;
    --font-size-medium: 1rem;
    --font-size-big: 1.5rem;
    --font-size-bigger: 2rem;
    --font-size-large: 3rem;
    --font-size-very-large: 4rem;
    --font-size-huge: 5rem;
}

* {
    font-family: "Segoe UI";
    margin: 0;
    padding: 0;
    border: 0;
}

.row {
    display: flex;
    flex-direction: row;
}

.column {
    display: flex;
    flex-direction: column;
}

.flex {
    display: flex;
}

.justify-center {
    justify-content: center;
}

.align-center {
    align-items: center;
}

.between {
    justify-content: space-between;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.element {
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.overflow-hidden {
    overflow: hidden;
}

.overflow-scroll {
    overflow: scroll;
}

html {
    background-color: var(--colors-background);
}

header {
    top: 0;
    position: sticky;
    z-index: 99999999999;
}

.navbar {
    padding: 1vh 5vw;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.9);
    border-bottom: 0.25vh solid var(--colors-link);
}

.navbar-logo {
    height: 100px;
}

.navbar a {
    text-decoration: none;
    color: var(--colors-nav-link);
    font-size: var(--font-size-big);
    text-align: center;
}

.navbar a:hover {
    color: var(--colors-link);
}

/*End Header*/
.title-section {
    display: flex;
    flex-direction: column;
    gap: 50px;
    text-align: center;
    min-height: 100px;
    background-color: var(--colors-background);
    background-image: url('../images/FOCUS-MH-min.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover, contain;
    border-bottom: 1px solid white;
}

.title,
.subtitle {
    padding: 1vh 2vw;
    color: var(--colors-text);
    font-weight: bolder;
    text-align: center;
}

.title {
    font-size: var(--font-size-very-large);
    text-shadow: 1px 1px 2px black;
    padding-top: 10vh;
}

.subtitle {
    font-size: var(--font-size-large);
}

.titleInfo {
    color: white;
    text-shadow: 1px 1px 3px black;
    font-size: 25px;
    padding-bottom: 10vh;
}

.main-section {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 5vh 5vw;
    color: var(--colors-text);
}

.reservation-section {
    padding: 5vh 5vw;
    border-bottom: 1px solid var(--colors-text);
}

.main-section a,
.reservation-button {
    color: var(--colors-text);
    text-decoration: none;
    padding: 10px;
    font-size: var(--font-size-medium);
    width: 20vw;
    text-align: center;
    border: 0.5vh solid var(--colors-text);
    border-radius: 1.5vh;
}

.main-section a:hover,
.reservation-button:hover {
    color: var(--colors-link);
    border-color: var(--colors-link);
}

.register {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

.register-button,
.redirect-button {
    padding: 10px;
    color: var(--colors-background);
    background-color: var(--colors-link);
    text-decoration: none;
    border-radius: 1.5vh;
}

.register-button:hover,
.redirect-button:hover {
    background-color: var(--colors-link-hover);
}

form {
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-column {
    margin: 10px;
}

form label {
    color: var(--colors-text);
    font-size: var(--font-size-big);
}

form input {
    padding: 5px;
    width: calc(100% - 10px);
}

form button {
    margin-top: 25px;
    color: var(--colors-background);
    background-color: var(--colors-link);
    padding: 10px;
    font-size: var(--font-size-medium);
    border: 0.5vh solid var(--colors-background);
    border-radius: 1.5vh;
}

form button:hover {
    background-color: var(--colors-link-hover);
}

.info-button {
    margin-bottom: 75px;
}

.info-button a{
    text-decoration: none;
    color: var(--colors-link);
}

.info-button a:hover {
    color: var(--colors-link-hover);
    text-decoration: underline;
}

.cookie-text {
    color: var(--colors-text);
    font-size: var(--font-size-big);
    font-weight: bolder;
    text-align: center;
}

.profile-row {
    flex-direction: row;
}

.logout {
    display: flex;
    justify-content: right;
    margin: 15px 15px 0 0;
    gap: 5px;
}

.logout-button {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--colors-text);
}

.logout-button:hover {
    color: var(--colors-link);
}

.delete-account {
    display: flex;
    justify-content: center;
    margin-top: 25px;
    color: var(--colors-danger);
    text-decoration: none;
}

.checkbox-small {
    width: auto;
}

.danger-button {
    background-color: var(--colors-danger);
}

.danger-button:hover {
    background-color: #b00;
}

.Danger {
    color: var(--colors-danger);
}

.userData {
    width: 50vw;
    border-right: 1px solid var(--colors-link);
}

.reservationsTable {
    overflow: scroll;
    scrollbar-color: gray transparent;
    scrollbar-width: thin;
    overflow-x: hidden;
    max-height: 300px;
}

.userReservations {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 50vw;
    padding-bottom: 50px;
    border-left: 1px solid var(--colors-link);
}

.userReservations p {
    color: var(--colors-text);
}

table {
    border-collapse: collapse;
}

table tr {
    border-bottom: solid white 2px;
}

table th, td {
    padding: 10px;
    color: white;
    text-align: center;
}

.dltButton {
    border: none;
}

.dltButton a {
    color: var(--colors-link);
    text-decoration: none;
}

.dltButton a:hover {
    color: indianred;
}

/* terugknop */
.previous-page {
    display: flex;
}

.previous-page-button {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--colors-text);
    padding: 5px;
}

.previous-page-button:hover span {
    color: var(--colors-link); /* Verandert de tekstkleur */
}

.previous-page-button:hover svg {
    fill: var(--colors-link); /* Verandert de kleur van de SVG */
}

/*Footer*/
footer {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    border-top: 0.25vh solid var(--colors-link);
    padding: 2.5vh 5vh;
}

footer p {
    color: var(--colors-text-footer);
}

.footer-contact {
    color: var(--colors-text);
}

.footer-social-links {
    display: flex;
    color: var(--colors-text);
    gap: 2vw;
    margin-bottom: 2.5vh;
}

.footer-social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--colors-text);
    background-color: var(--colors-background);
    height: 40px;
    width: 40px;
}

.footer-social-links a:hover {
    color: var(--colors-background);
    background-color: var(--colors-link);
    border: 0 hidden var(--colors-background);
    border-radius: 1.5vh;
}

.footer-copyright {
    color: var(--colors-text-footer);
    font-size: var(--font-size-small);
    display: flex;
    justify-content: center;
    flex-direction: column;
}

footer iframe {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.footer-copyright a {
    text-decoration: none;
    color: var(--colors-link);
}

.footer-copyright a {

}

.footer-location-contact {
    color: var(--colors-text);
}

.footer-info {
    margin-bottom: 2.5vh;
}

footer.row {
    justify-content: space-between;
    align-items: center;
}


@media (max-width: 600px) {
    .main-section {
        flex-direction: column;
        gap: 3vh;
    }
}

@media (max-width: 768px) {
    footer {
        display: flex;
        justify-content: center;
        flex-direction: column;
    }
}

@media (max-width: 850px) {
    .profile-row {
        flex-direction: column;
    }
    .userData,
    .userReservations {
        width: 100vw;
        border-right: none;
        border-left: none;
    }
    .userData {
        border-bottom: 1px solid var(--colors-link);
    }

    .reservationsTable {
        overflow: scroll;

        max-height: 450px;
    }
}