/* General styles */
#successMessage {
    position: fixed;
    bottom: 20px;
    left: 4%;
    z-index: 9999;
}

/* Form check styles */
.form-check {
    margin-top: 10px;
}

.form-check-label {
    display: flex;
    align-items: center;
}

.form-check-input {
    margin-right: 5px;
}

.form-check .form-check-input {
    float: left;
}
.extra-margin {
    margin-top: 20px; 
}
/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0,0,0,0.4);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #fefefe;
    padding: 15px;
    border: 1px solid #888;
    width: 80%;
    max-width: 1000px; 
    height: 700px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-y: auto;
}


#bezoekersreglementContent {
    overflow-y: auto;
    flex-grow: 1;
    margin-bottom: 20px;
    max-height: calc(100% - 60px);
}

/* Responsive modal adjustments */
@media screen and (max-width: 800px) {
    .modal-content {
        width: 95%;
        max-width: 1000px;
        height: auto;
        max-height: 80vh; 
    }
}

/* Button styles */
.btn-highlight {
    background-color: #0070C0;
    border-color: #0070C0;
    color: white;
}

.btn-success {
    background-color: #28a745;
    border-color: #28a745;
    color: white;
}

/* Close button styles */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Reglement list styles */
.reglement-list {
    counter-reset: item;
    list-style-type: none;
    padding-left: 0;
}

.reglement-list li {
    display: flex;
    margin-bottom: 10px;
}

.reglement-list li:before {
    content: counter(item) ".";
    counter-increment: item;
    margin-right: 10px;
    font-weight: bold;
    min-width: 25px;
}

/* Logo styles */
.navbar-brand {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    padding-left: 15px; /* Adds some space from the left edge */
}

.navbar-brand-img {
    width: 30vw;
    max-width: 175px;
    height: auto;
    object-fit: contain;
}

/* Media query for Galaxy Tab S4 */
@media only screen and (width: 712px) and (height: 1138px) {
    .navbar-brand-img {
        width: 50vw;
        max-width: 350px;
    }
}

/* For tablets in portrait orientation */
@media only screen and (min-width: 600px) and (max-width: 900px) and (orientation: portrait) {
    .navbar-brand-img {
        width: 40vw;
        max-width: 200px;
    }
    .vh-100 {
        height: 75vh !important;
    }
}
