/**
 * Blije Schaap Core - My Account Widget Styles
 */

/* ==========================================================================
   Widget Container
   ========================================================================== */

.bsc-account-wrapper {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
}

/* No header variant - cleaner for templates with their own hero */
.bsc-account-wrapper.bsc-no-header {
    box-shadow: none;
    border: 1px solid #e5e7eb;
}

.bsc-no-header .bsc-account-header {
    display: none !important;
}

/* ==========================================================================
   Message Box (for login required, no bookings states)
   ========================================================================== */

.bsc-account-wrapper .bsc-message-box {
    text-align: center;
    padding: 30px 20px;
    border-radius: 8px;
    background: #f8f9fa;
    border: 1px solid #e5e7eb;
}

.bsc-account-wrapper .bsc-message-box.bsc-message-info {
    background: #e7f3ff;
    border-color: #b8daff;
}

.bsc-account-wrapper .bsc-message-box .bsc-message-icon {
    display: block;
    font-size: 2.5em;
    margin-bottom: 15px;
}

.bsc-account-wrapper .bsc-message-box p {
    margin: 0 0 20px;
    color: #333;
    font-size: 1em;
    line-height: 1.5;
}

.bsc-account-wrapper .bsc-action-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #1b3254;
    color: #fff !important;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.95em;
    transition: background 0.2s ease;
}

.bsc-account-wrapper .bsc-action-button:hover {
    background: #2a4a7a;
    color: #fff !important;
}

.bsc-account-wrapper .bsc-button-arrow {
    font-size: 1.1em;
    transition: transform 0.2s ease;
}

.bsc-account-wrapper .bsc-action-button:hover .bsc-button-arrow {
    transform: translateX(3px);
}

/* ==========================================================================
   Header Section
   ========================================================================== */

.bsc-account-header {
    background: linear-gradient(135deg, #1b3254 0%, #2a4a7a 100%);
    color: #fff;
    padding: 30px 25px;
    text-align: center;
}

.bsc-account-header.bsc-header-info {
    background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
}

.bsc-account-icon {
    font-size: 3em;
    margin-bottom: 10px;
}

.bsc-account-header h2 {
    margin: 0 0 8px;
    font-size: 1.6em;
    font-weight: 600;
    color: #fff;
}

.bsc-account-header p {
    margin: 0;
    opacity: 0.9;
    font-size: 0.95em;
}

.bsc-user-email {
    font-size: 1em !important;
    opacity: 0.85 !important;
    margin-bottom: 15px !important;
}

/* Account Stats */
.bsc-account-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.bsc-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bsc-stat-number {
    font-size: 2em;
    font-weight: 700;
    line-height: 1;
}

.bsc-stat-label {
    font-size: 0.85em;
    opacity: 0.8;
    margin-top: 5px;
}

/* ==========================================================================
   Body Section
   ========================================================================== */

.bsc-account-body {
    padding: 25px;
}

/* ==========================================================================
   Section Styles
   ========================================================================== */

.bsc-account-section {
    margin-bottom: 30px;
}

.bsc-account-section:last-child {
    margin-bottom: 0;
}

/* Section title - consistent with booking confirmation widget */
.bsc-account-wrapper .bsc-section-title,
.bsc-account-section .bsc-section-title {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin: 0 0 12px 0 !important;
    padding: 0 0 10px 0 !important;
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    color: #424242 !important;
    border-bottom: 1px solid #e5e7eb !important;
    letter-spacing: -0.01em !important;
    line-height: 1.4 !important;
    text-transform: none !important;
}

.bsc-account-wrapper .bsc-section-icon {
    font-size: 0.9em !important;
}

.bsc-section-count {
    font-size: 0.85em;
    font-weight: 400;
    color: #888;
}

/* ==========================================================================
   Bookings Grid
   ========================================================================== */

.bsc-bookings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
}

/* ==========================================================================
   Booking Card
   ========================================================================== */

.bsc-booking-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.bsc-booking-card:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.bsc-card-past {
    opacity: 0.85;
}

.bsc-card-past:hover {
    opacity: 1;
}

/* Card Header */
.bsc-booking-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: #1b3254;
    color: #fff;
}

.bsc-card-past .bsc-booking-card-header {
    background: #6c757d;
}

.bsc-booking-id {
    font-weight: 600;
    font-size: 0.95em;
}

/* Status Badge */
.bsc-booking-status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: 500;
}

.bsc-status-confirmed {
    background: #28a745;
    color: #fff !important;
}

.bsc-booking-status {
    color: #fff !important;
}

.bsc-status-pending,
.bsc-status-pending-payment {
    background: #ffc107;
    color: #212529;
}

.bsc-status-cancelled {
    background: #dc3545;
    color: #fff;
}

.bsc-status-abandoned {
    background: #6c757d;
    color: #fff;
}

.bsc-status-unknown {
    background: #e0e0e0;
    color: #333;
}

.bsc-status-icon {
    font-size: 0.9em;
}

/* Card Body */
.bsc-booking-card-body {
    padding: 15px;
}

/* Room Name */
.bsc-booking-room {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eee;
}

.bsc-room-icon {
    font-size: 1.1em;
}

.bsc-room-name {
    font-weight: 600;
    color: #333;
    font-size: 1.05em;
}

/* Dates */
.bsc-booking-dates {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
}

.bsc-date-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bsc-date-label {
    font-size: 0.75em;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.bsc-date-value {
    font-weight: 600;
    color: #333;
    font-size: 0.95em;
}

.bsc-date-arrow {
    color: #1b3254;
    font-size: 1.2em;
    font-weight: 600;
}

/* Meta Info */
.bsc-booking-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.bsc-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9em;
    color: #666;
}

.bsc-meta-icon {
    font-size: 1em;
}

/* Total */
.bsc-booking-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid #eee;
}

.bsc-total-label {
    font-size: 0.9em;
    color: #666;
}

.bsc-total-value {
    font-size: 1.2em;
    font-weight: 700;
    color: #1b3254;
}

/* Card Footer */
.bsc-booking-card-footer {
    padding: 12px 15px;
    background: #f8f9fa;
    border-top: 1px solid #eee;
    text-align: center;
}

.bsc-view-details-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #1b3254;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9em;
    transition: color 0.2s ease;
}

.bsc-view-details-link:hover {
    color: #2a4a7a;
}

.bsc-link-arrow {
    transition: transform 0.2s ease;
}

.bsc-view-details-link:hover .bsc-link-arrow {
    transform: translateX(3px);
}

/* ==========================================================================
   Action Buttons (Login / No Bookings)
   ========================================================================== */

.bsc-login-action,
.bsc-no-bookings-action {
    text-align: center;
    padding: 20px 0;
}

.bsc-login-button,
.bsc-reservation-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background: linear-gradient(135deg, #1b3254 0%, #2a4a7a 100%);
    color: #fff !important;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.05em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(27, 50, 84, 0.3);
}

.bsc-login-button:hover,
.bsc-reservation-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(27, 50, 84, 0.4);
    color: #fff !important;
}

.bsc-button-icon {
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

.bsc-login-button:hover .bsc-button-icon,
.bsc-reservation-button:hover .bsc-button-icon {
    transform: translateX(3px);
}

/* ==========================================================================
   Past Section Specific
   ========================================================================== */

.bsc-section-past .bsc-section-title {
    color: #6c757d;
}

/* ==========================================================================
   Tab Navigation
   ========================================================================== */

.bsc-account-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    background: #f5f5f5;
    border-bottom: 2px solid #e5e7eb;
    padding: 0;
}

.bsc-tab-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 15px 20px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    cursor: pointer;
    font-size: 0.95em;
    font-weight: 500;
    color: #666;
    transition: all 0.2s ease;
    font-family: inherit;
}

.bsc-tab-button:hover {
    color: #1b3254;
    background: rgba(27, 50, 84, 0.05);
}

.bsc-tab-button.bsc-tab-active {
    color: #1b3254;
    border-bottom-color: #1b3254;
    background: #fff;
}

.bsc-tab-icon {
    font-size: 1.1em;
}

.bsc-tab-label {
    white-space: nowrap;
}

/* Tab Content */
.bsc-tab-content {
    display: none;
}

.bsc-tab-content.bsc-tab-visible {
    display: block;
}

/* ==========================================================================
   Welcome Tab
   ========================================================================== */

.bsc-welcome-header {
    margin-bottom: 25px;
}

.bsc-welcome-title {
    margin: 0 0 10px;
    font-size: 1.5em;
    font-weight: 600;
    color: #333;
}

.bsc-welcome-message {
    color: #666;
    line-height: 1.6;
}

.bsc-welcome-message p {
    margin: 0;
}

/* Welcome Stats */
.bsc-welcome-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.bsc-welcome-stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
}

.bsc-welcome-stat-number {
    font-size: 2.5em;
    font-weight: 700;
    color: #1b3254;
    line-height: 1;
}

.bsc-welcome-stat-label {
    margin-top: 8px;
    font-size: 0.9em;
    color: #666;
    text-align: center;
}

.bsc-welcome-next-booking {
    margin-top: 20px;
}

/* ==========================================================================
   Account Form Styles
   ========================================================================== */

.bsc-account-form {
    max-width: 600px;
}

.bsc-form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.bsc-account-form .bsc-form-field {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.bsc-form-field-full {
    flex: 1 1 100% !important;
}

.bsc-account-form label {
    margin-bottom: 6px;
    font-weight: 500;
    color: #333;
    font-size: 0.9em;
}

.bsc-account-form input[type="text"],
.bsc-account-form input[type="email"],
.bsc-account-form input[type="tel"] {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1em;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.bsc-account-form input:focus {
    outline: none;
    border-color: #1b3254;
    box-shadow: 0 0 0 3px rgba(27, 50, 84, 0.1);
}

.bsc-account-form input:disabled {
    background: #f5f5f5;
    color: #888;
    cursor: not-allowed;
}

.bsc-field-note {
    margin-top: 5px;
    font-size: 0.8em;
    color: #888;
    font-style: italic;
}

.bsc-form-actions {
    margin-top: 25px;
}

.bsc-submit-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    background: #1b3254;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 1em;
    cursor: pointer;
    transition: background 0.2s ease;
}

.bsc-submit-button:hover {
    background: #2a4a7a;
}

.bsc-section-text {
    margin: 0 0 15px;
    color: #666;
}

.bsc-text-link {
    color: #1b3254;
    text-decoration: none;
    font-weight: 500;
}

.bsc-text-link:hover {
    text-decoration: underline;
}

/* Success Message */
.bsc-message-success {
    background: #d4edda !important;
    border-color: #c3e6cb !important;
}

.bsc-message-success p {
    color: #155724 !important;
}

/* ==========================================================================
   Invoices List
   ========================================================================== */

.bsc-invoices-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.bsc-invoice-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px 20px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    transition: box-shadow 0.2s ease;
}

.bsc-invoice-item:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.bsc-invoice-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.bsc-invoice-id {
    font-weight: 600;
    color: #333;
}

.bsc-invoice-date {
    font-size: 0.9em;
    color: #888;
}

.bsc-invoice-amount {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.bsc-invoice-total {
    font-weight: 600;
    color: #333;
}

.bsc-invoice-status {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.8em;
    font-weight: 500;
}

.bsc-invoice-actions {
    display: flex;
    gap: 10px;
}

/* ==========================================================================
   Payment Status Badges
   ========================================================================== */

.bsc-booking-payment {
    margin-top: 15px;
    padding-top: 12px;
    border-top: 1px solid #eee;
}

.bsc-payment-status-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bsc-payment-label {
    font-size: 0.9em;
    color: #666;
}

.bsc-payment-badge,
.bsc-invoice-status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8em;
    font-weight: 500;
}

.bsc-payment-paid {
    background: #d4edda;
    color: #155724;
}

.bsc-payment-partial {
    background: #fff3cd;
    color: #856404;
}

.bsc-payment-pending {
    background: #e7f3ff;
    color: #004085;
}

.bsc-payment-unpaid {
    background: #f8d7da;
    color: #721c24;
}

.bsc-payment-unknown {
    background: #e0e0e0;
    color: #333;
}

.bsc-payment-amounts {
    display: flex;
    gap: 15px;
    margin-top: 8px;
    font-size: 0.85em;
}

.bsc-payment-paid-amount {
    color: #155724;
}

.bsc-payment-remaining {
    color: #dc3545;
}

/* Payment Action Button */
.bsc-payment-action-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: #28a745;
    color: #fff !important;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.9em;
    transition: background 0.2s ease;
    margin-right: 10px;
}

.bsc-payment-action-button:hover {
    background: #218838;
    color: #fff !important;
}

.bsc-payment-action-icon {
    font-size: 1em;
}

/* Small action button variant */
.bsc-action-small {
    padding: 8px 16px;
    font-size: 0.85em;
}

/* ==========================================================================
   Login Form Styles
   ========================================================================== */

.bsc-login-container {
    max-width: 420px;
    margin: 0 auto;
    padding: 20px;
}

.bsc-login-header {
    text-align: center;
    margin-bottom: 30px;
}

.bsc-login-icon {
    display: block;
    font-size: 3em;
    margin-bottom: 15px;
}

.bsc-login-title {
    margin: 0 0 10px;
    font-size: 1.6em;
    font-weight: 600;
    color: #333;
}

.bsc-login-subtitle {
    margin: 0;
    color: #666;
    font-size: 0.95em;
    line-height: 1.5;
}

/* Login Messages */
.bsc-login-messages {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.bsc-login-messages.bsc-message-error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
}

.bsc-login-messages.bsc-message-error p {
    color: #721c24;
    margin: 0;
    font-size: 0.9em;
}

.bsc-login-messages.bsc-message-success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
}

.bsc-login-messages.bsc-message-success p {
    color: #155724;
    margin: 0;
    font-size: 0.9em;
}

/* Login Form Fields */
.bsc-login-form .bsc-form-field {
    margin-bottom: 20px;
}

.bsc-login-form label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
    font-size: 0.9em;
}

.bsc-field-icon {
    font-size: 1em;
}

.bsc-login-form input[type="text"],
.bsc-login-form input[type="email"],
.bsc-login-form input[type="password"] {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1em;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}

.bsc-login-form input:focus {
    outline: none;
    border-color: #1b3254;
    box-shadow: 0 0 0 3px rgba(27, 50, 84, 0.1);
}

.bsc-login-form input::placeholder {
    color: #999;
}

/* Password Field with Toggle */
.bsc-password-field {
    position: relative;
    display: flex;
    align-items: stretch;
}

.bsc-password-field input {
    padding-right: 50px;
}

.bsc-toggle-password {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    font-size: 1.2em;
    opacity: 0.6;
    transition: opacity 0.2s;
    z-index: 10;
}

.bsc-toggle-password:focus {
    outline: none;
    opacity: 1;
}

.bsc-toggle-password:hover {
    opacity: 1;
}

.bsc-toggle-password svg {
    display: block;
    color: #666;
}

.bsc-toggle-password:hover svg {
    color: #1b3254;
}

/* Form Options Row */
.bsc-form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 10px;
}

.bsc-remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 0.9em;
    color: #555;
}

.bsc-remember-me input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #1b3254;
}

.bsc-forgot-password-link {
    color: #1b3254;
    text-decoration: none;
    font-size: 0.9em;
    font-weight: 500;
    transition: color 0.2s;
}

.bsc-forgot-password-link:hover {
    color: #2a4a7a;
    text-decoration: underline;
}

/* Login Button */
.bsc-login-form .bsc-login-button {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #1b3254 0%, #2a4a7a 100%);
    color: #fff !important;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(27, 50, 84, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.bsc-login-form .bsc-login-button:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(27, 50, 84, 0.4);
}

.bsc-login-form .bsc-login-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Loading Spinner */
.bsc-button-loading {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bsc-spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: bsc-spin 0.8s ease-in-out infinite;
}

@keyframes bsc-spin {
    to {
        transform: rotate(360deg);
    }
}

/* Form Footer */
.bsc-form-footer {
    margin-top: 20px;
    text-align: center;
}

.bsc-back-to-login {
    color: #1b3254;
    text-decoration: none;
    font-size: 0.9em;
    font-weight: 500;
    transition: color 0.2s;
}

.bsc-back-to-login:hover {
    color: #2a4a7a;
    text-decoration: underline;
}

/* Forgot Password Success State */
.bsc-forgot-success .bsc-login-header {
    margin-bottom: 0;
}

.bsc-forgot-success .bsc-login-subtitle {
    max-width: 300px;
    margin: 0 auto;
}

/* ==========================================================================
   Editor Placeholder
   ========================================================================== */

.bsc-editor-placeholder {
    position: relative;
}

.bsc-editor-placeholder::after {
    content: 'Voorbeeld - Live data wordt getoond op de website';
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 10px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 0.75em;
    border-radius: 4px;
    z-index: 10;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media (max-width: 768px) {
    .bsc-account-header {
        padding: 25px 20px;
    }

    .bsc-account-header h2 {
        font-size: 1.4em;
    }

    .bsc-account-stats {
        gap: 20px;
    }

    .bsc-stat-number {
        font-size: 1.6em;
    }

    .bsc-account-body {
        padding: 20px 15px;
    }

    .bsc-bookings-grid {
        grid-template-columns: 1fr;
    }

    .bsc-section-title {
        font-size: 1.1em;
    }

    .bsc-booking-dates {
        flex-direction: column;
        gap: 10px;
    }

    .bsc-date-arrow {
        transform: rotate(90deg);
    }

    .bsc-booking-meta {
        flex-wrap: wrap;
    }

    /* Tab responsive */
    .bsc-account-tabs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .bsc-tab-button {
        padding: 12px 15px;
        font-size: 0.9em;
    }

    /* Welcome stats responsive */
    .bsc-welcome-stats {
        flex-direction: column;
    }

    .bsc-welcome-stat-number {
        font-size: 2em;
    }

    /* Form responsive */
    .bsc-form-row {
        flex-direction: column;
        gap: 15px;
    }

    /* Invoice responsive */
    .bsc-invoice-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .bsc-invoice-amount {
        align-items: flex-start;
    }

    .bsc-invoice-actions {
        width: 100%;
    }

    .bsc-invoice-actions .bsc-action-button {
        width: 100%;
        justify-content: center;
    }

    /* Payment section responsive */
    .bsc-payment-amounts {
        flex-direction: column;
        gap: 5px;
    }

    .bsc-booking-card-footer {
        flex-direction: column;
        gap: 10px;
    }

    .bsc-payment-action-button {
        margin-right: 0;
        width: 100%;
        justify-content: center;
    }

    .bsc-view-details-link {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .bsc-account-header {
        padding: 20px 15px;
    }

    .bsc-account-icon {
        font-size: 2.5em;
    }

    .bsc-account-header h2 {
        font-size: 1.25em;
    }

    .bsc-login-button,
    .bsc-reservation-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .bsc-total-value {
        font-size: 1.1em;
    }

    /* Tab text hide on small screens */
    .bsc-tab-label {
        display: none;
    }

    .bsc-tab-button {
        padding: 12px 15px;
    }

    .bsc-tab-icon {
        font-size: 1.3em;
    }

    .bsc-welcome-title {
        font-size: 1.25em;
    }

    /* Login form responsive */
    .bsc-login-container {
        padding: 15px;
    }

    .bsc-login-icon {
        font-size: 2.5em;
    }

    .bsc-login-title {
        font-size: 1.4em;
    }

    .bsc-form-options {
        flex-direction: column;
        align-items: flex-start;
    }

    .bsc-login-form input[type="text"],
    .bsc-login-form input[type="email"],
    .bsc-login-form input[type="password"] {
        padding: 12px 14px;
    }

    .bsc-login-form .bsc-login-button {
        padding: 14px 20px;
    }
}
