@font-face {
    font-family: "Sommet Rounded";
    src: url("./fonts/SommetRoundedBold.otf");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Sommet Rounded";
    src: url("./fonts/SommetRoundedBlack.otf");
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: "Sommet Rounded";
    src: url("./fonts/SommetRoundedBlackItalic.otf");
    font-weight: bold;
    font-style: italic;
}

.stickyFooter {
    position: sticky;
    bottom: 0;
}

.bookingImage {
    min-width: 100px;
    max-width: 120px;
    height: auto;
    width: 100%;
}

.bookingButton {
    padding: 8px;
    justify-content: center;
    display: flex;
    min-height: 80px;
    width: 100%;
    margin-bottom: 8px;
    border: 2px solid transparent;
    transition: all 0.2s ease;
}

.bookingButton:hover {
    border-color: #0d6efd;
    transform: translateY(-2px);
}

.bookingButton.btn-primary {
    border-color: #0d6efd;
    background-color: #e7f3ff;
}

.bookingCol {
    display: flex;
    flex-direction: column;
    padding: 0 4px;
}

/* Modal specific improvements */
#primaryContainer {
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 0.5rem;
}

.modal-body {
    /* Remove conflicting scroll properties */
    padding: 1rem;
}

.modal-body .form-control-sm {
    font-size: 0.8rem;
}

.modal-body .btn-sm {
    font-size: 0.8rem;
    padding: 0.25rem 0.5rem;
}

.modal-body h5 {
    font-size: 1.1rem;
}

.modal-body p {
    font-size: 0.85rem;
}

.modal-body small {
    font-size: 0.75rem;
}

.modal-body .col-form-label {
    font-size: 0.85rem;
}

/* Responsive adjustments */
@media(min-width: 768px) {
    .bookingCol {
        display: block;
    }
    
    .bookingButton {
        margin-bottom: 4px;
    }
}

@media(max-width: 576px) {
    .modal-body {
        padding: 1rem 0.5rem;
    }
    
    .bookingImage {
        min-width: 80px;
        max-width: 100px;
    }
    
    .bookingButton {
        min-height: 60px;
        padding: 4px;
    }
}