/* Booking Sidebar Styles */
.booking-sidebar .form-group small {
    font-size: 12px;
    color: #6c757d;
}

.booking-sidebar .form-check-label {
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
}

.booking-sidebar .form-check-input {
    cursor: pointer;
}

/* Price Display */
.listing-price-amount span {
    font-size: 32px;
    font-weight: 700;
    color: var(--theme-color, #C97828);
}

.listing-price-amount del {
    font-size: 18px;
    color: #999;
    margin-left: 5px;
}

/* Danger Text */
.text-danger {
    color: #dc3545 !important;
}

/* Form Messages */
.form-messege {
    padding: 15px 20px;
    border-radius: 15px;
    margin-top: 15px;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.5;
}

.form-messege.text-success {
    background: rgba(39, 174, 96, 0.1);
    color: #155724;
    border: 1px solid rgba(39, 174, 96, 0.2);
}

.form-messege.text-danger {
    background: rgba(231, 76, 60, 0.1);
    color: #721c24;
    border: 1px solid rgba(231, 76, 60, 0.2);
}

.form-messege ul {
    margin: 10px 0 0 20px;
    padding: 0;
}

.form-messege li {
    margin: 5px 0;
}

.form-messege .close-btn {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: inherit;
    padding: 0 4px;
    line-height: 1;
    float: right;
}

/* Button States */
.theme-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-loading {
    display: none;
}

.theme-btn.is-loading .btn-text {
    display: none;
}

.theme-btn.is-loading .btn-loading {
    display: inline;
}

