.abs-booking-container {
    max-width: 900px;
    margin: 30px auto;
    padding: 20px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    direction: ltr; /* Changed to ltr since text is in French */
}
.abs-booking-container h2 {
    font-size: 26px;
    font-weight: 600;
    color: #222222;
    margin-bottom: 20px;
    text-align: center;
}
.abs-form-group {
    margin-bottom: 20px;
}
.abs-form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #222222;
}
.abs-form-group input, .abs-form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #dcdcdc;
    border-radius: 8px;
    font-size: 16px;
    background: #ffffff;
    transition: border-color 0.2s;
}
.abs-form-group input:focus, .abs-form-group select:focus {
    border-color: #ff5a5f;
    outline: none;
}
.abs-form-group input[type="submit"] {
    background: #ff5a5f;
    color: white;
    border: none;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 8px;
    transition: background 0.2s;
    width: 100%;
}
.abs-form-group input[type="submit"]:hover {
    background: #e31c5f;
}
.abs-price-display p {
    font-size: 18px;
    font-weight: 600;
    color: #222222;
    margin: 0;
}
.abs-apartment-details {
    margin-bottom: 20px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 8px;
}
.abs-apartment-details h3 {
    font-size: 20px;
    font-weight: 600;
    color: #222222;
    margin: 0 0 10px;
}
.abs-apartment-details p {
    font-size: 16px;
    color: #555555;
    margin: 0 0 10px;
}
.abs-image-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.abs-apartment-image {
    max-width: 200px;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}
.flatpickr-calendar {
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    max-width: 100%;
    margin: 20px auto;
    background: #ffffff;
}
.flatpickr-day {
    font-size: 14px;
}
.flatpickr-day.selected, .flatpickr-day.startRange, .flatpickr-day.endRange {
    background: #ff5a5f;
    border-color: #ff5a5f;
    color: white;
}
.flatpickr-day.disabled {
    background: #f4f4f4;
    color: #999999;
    cursor: not-allowed;
    text-decoration: line-through;
}
.flatpickr-day.inRange {
    background: #ffe3e3;
    border-color: #ff5a5f;
    color: #222222;
}
.flatpickr-monthDropdown-months, .flatpickr-current-month span {
    font-weight: 600;
    color: #222222;
}
@media (max-width: 600px) {
    .flatpickr-calendar {
        transform: scale(0.85);
    }
    .abs-booking-container {
        padding: 15px;
    }
    .abs-form-group input, .abs-form-group select {
        font-size: 14px;
    }
    .abs-apartment-image {
        max-width: 150px;
    }
}
/* Popup Styles */
.abs-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
.abs-popup-content {
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    position: relative;
}
.abs-popup-content h2 {
    font-size: 24px;
    color: #222222;
    margin-bottom: 15px;
}
.abs-popup-content p {
    font-size: 16px;
    color: #555555;
    margin-bottom: 20px;
}
.abs-popup-button {
    background: #ff5a5f;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s;
}
.abs-popup-button:hover {
    background: #e31c5f;
}
.abs-popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    color: #555555;
    cursor: pointer;
}
.abs-popup-close:hover {
    color: #222222;
}
/* Admin Button Styles */
.button-primary {
    background: #ff5a5f !important;
    border-color: #ff5a5f !important;
}
.button-primary:hover {
    background: #e31c5f !important;
    border-color: #e31c5f !important;
}
.button-secondary {
    background: #6c757d !important;
    border-color: #6c757d !important;
}
.button-secondary:hover {
    background: #5a6268 !important;
    border-color: #5a6268 !important;
}