.uplisting-booking-widget {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 24px;
    max-width: 400px;
    margin: 20px auto;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background: white;
}

.booking-header {
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f0f0f0;
}

.price-per-night {
    font-size: 28px;
    font-weight: 700;
    color: #222;
    margin-bottom: 12px;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.price-per-night .currency {
    font-size: 20px;
    color: #666;
}

.price-per-night .amount {
    font-size: 32px;
    color: #ff5a5f;
}

.price-per-night .period {
    font-size: 16px;
    font-weight: 400;
    color: #666;
    margin-left: 4px;
}

.listing-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.3;
}

.listing-location {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.booking-form .form-row {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.booking-form .form-group {
    flex: 1;
}

.booking-form label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.booking-form input[type="text"],
.booking-form input[type="email"],
.booking-form input[type="tel"],
.booking-form select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    background-color: white;
    transition: border-color 0.2s;
}

.booking-form input[type="text"]:focus,
.booking-form input[type="email"]:focus,
.booking-form input[type="tel"]:focus,
.booking-form select:focus {
    outline: none;
    border-color: #ff5a5f;
    box-shadow: 0 0 0 2px rgba(255, 90, 95, 0.1);
}

.instant-book-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #0C3124, #0C3124);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 20px;
    letter-spacing: 0.5px;
}

.instant-book-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, #0C3124, #0C3129);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 90, 95, 0.3);
}

.instant-book-btn:disabled {
    background: #cccccc;
    cursor: not-allowed;
    transform: none;
}

.booking-note {
    text-align: center;
    font-size: 13px;
    color: #888;
    margin-top: 12px;
    font-style: italic;
}

.booking-message {
    margin-top: 20px;
    padding: 14px;
    border-radius: 8px;
    display: none;
    font-size: 14px;
    line-height: 1.5;
}

.booking-message.success {
    background-color: #d4f8e8;
    color: #0d6832;
    border: 1px solid #a3e9c4;
}

.booking-message.error {
    background-color: #0C3124;
    color: #c53030;
    border: 1px solid #fcb8b8;
}

.booking-message ul {
    margin: 8px 0 8px 20px;
}

.booking-message li {
    margin-bottom: 4px;
}

.guest-details {
    border-top: 1px solid #0C3124;
    padding-top: 20px;
    margin-top: 20px;
}

/* Datepicker styling */
.ui-datepicker {
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.ui-datepicker-header {
    background: #0C3124;
    border-radius: 6px;
    margin-bottom: 10px;
}

.ui-datepicker-calendar td a {
    text-align: center;
    padding: 5px;
    border-radius: 4px;
}

.ui-datepicker-calendar td a.ui-state-active {
    background: #0C3124;
    color: white;
}