/* ── Counselling Session Booking Plugin Styles ── */

#csb-wrapper {
    max-width: 680px;
    margin: 0 auto;
}

/* Alert box */
.csb-alert {
    padding: 14px 18px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.5;
}

.csb-alert-error {
    background: #fff0f0;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.csb-alert-success {
    background: #f0fff4;
    border: 1px solid #b7ebc5;
    color: #155724;
}

/* Field error messages */
.csb-error {
    font-size: 12px;
    color: #dc3545;
    margin-top: 4px;
    min-height: 18px;
    display: none;
}

.csb-error.visible {
    display: block;
}

/* Red ring on invalid input */
.csb-input-error {
    border: 1.5px solid #dc3545 !important;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.12) !important;
}

/* Fee display */
.csb-fee-box {
    background: #f0f7ff;
    border: 1px solid #cce0ff;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    color: #2c5282;
}

/* Hidden utility */
.csb-hidden {
    display: none !important;
}

/* ── Success screen ── */
.csb-success-box {
    text-align: center;
    padding: 40px 24px;
    background: #f8fff9;
    border: 1px solid #b7ebc5;
    border-radius: 12px;
}

.csb-success-icon {
    width: 64px;
    height: 64px;
    background: #28a745;
    color: #fff;
    font-size: 32px;
    line-height: 64px;
    border-radius: 50%;
    margin: 0 auto 16px;
    font-weight: 700;
}

.csb-success-box h3 {
    color: #155724;
    margin-bottom: 8px;
}

.csb-success-box p {
    color: #555;
    font-size: 14px;
    margin-bottom: 20px;
}

.csb-summary {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    display: inline-block;
    background: #fff;
    border: 1px solid #d4edda;
    border-radius: 8px;
    padding: 16px 24px;
}

.csb-summary li {
    padding: 5px 0;
    font-size: 14px;
    color: #333;
    border-bottom: 1px solid #f0f0f0;
}

.csb-summary li:last-child {
    border-bottom: none;
}
