body {
    padding-top: 70px;
}
.navbar {
    height: 70px;
    opacity: 0.9;
}
.navbar.scrolled {
    height: 52px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.navbar.scrolled .navbar-nav .nav-link{
    font-size: 15px;
}
.navbar.scrolled .navbar-brand {
    font-size: 22px;
}
.navbar.scrolled .navbar-brand img {
    width: 67px;
}
.navbar.scrolled .btn {
    padding: 9px 19px;
}
@media (max-width: 991px) {
    .navbar {
        padding: 0;
    }
}
.navbar-light .navbar-nav .nav-link {
    font-size: 20px;
}
.navbar-light .navbar-brand {
    font-size: 30px;
}
.navbar-light .navbar-brand span {
    position: relative;
    left: -10px;
}
.form-check-input {
    margin-left: 0;
    margin-right: 15px;
    text-align: center;
}
.modal-dialog {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50vh; /* Full height */
    padding: 20px;
}
.modal-content {
    margin: auto;
    min-width: 25%; /* Minimum width of 25% */
}
.custom-close {
    border: none;
    font-size: 1.5rem;
    color: black;
    background-color: transparent;
}
.custom-close:hover {
    color: darkgrey;
}
.form-part-custom .row {
    border-bottom: solid 1px black;
}
.datepicker-inline {
    width: 100%;
}
table {
    width: 100%;
}


.page-spinner-wrapper {
    position: relative; /* Už není absolutně pozicovaný */
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px; /* Šířka oblasti spinneru */
    height: 80px; /* Výška oblasti spinneru */
    margin: auto; /* Vycentrování ve svém kontextu */
}
.page-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid transparent;
    border-top: 4px solid #007bff; /* Barva spinneru */
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.reservation-summary {
    border: 1px solid #dee2e6;
    border-radius: 5px;
    padding: 15px;
    background-color: #f8f9fa;
}
.spinner-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}
.spinner-border {
    width: 2rem;
    height: 2rem;
}
.gdpr-modal.modal-content a {
    color: blue;
    text-decoration: underline;
}
