.booking-app {
    color: #111827;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    text-align: left;

    .container {
        max-width: 900px;
        margin: 0 auto;
    }

    .header {
        text-align: center;
        color: #111827;
        margin-bottom: 40px;
    }

    .headshot {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        object-fit: cover;
        margin: 0 auto 20px;
        display: block;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    .header h1 {
        font-size: 2.5rem;
        margin-bottom: 10px;
        font-weight: 700;
    }

    .header p {
        font-size: 1.1rem;
        color: #6b7280;
    }

    .location-info {
        display: flex;
        align-items: center;
        gap: 8px;
        color: #9ca3af;
        font-size: 0.9rem;
        margin-bottom: 25px;
        padding-bottom: 20px;
        border-bottom: 1px solid #f3f4f6;
    }

    .location-info svg {
        width: 16px;
        height: 16px;
        flex-shrink: 0;
    }

    .card {
        background: white;
        border-radius: 16px;
        padding: 30px;
        box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    }

    .summary-bar {
        background: #e5e7eb;
        border-radius: 12px;
        padding: 20px;
        margin-bottom: 30px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: all 0.3s ease;
    }

    .summary-bar.empty {
        opacity: 0.5;
        pointer-events: none;
    }

    .floating-checkout {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
        padding: 16px 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transform: translateY(100%);
        transition: transform 0.3s ease;
        z-index: 1000;
    }

    .floating-checkout.visible {
        transform: translateY(0);
    }

    .floating-checkout .summary-info h3 {
        margin: 0;
        font-size: 1rem;
    }

    .floating-checkout .checkout-btn {
        padding: 10px 24px;
    }

    .summary-info h3 {
        font-size: 1.1rem;
        margin-bottom: 5px;
    }

    .summary-info p {
        color: #6b7280;
    }

    .sync-note {
        background: #eff6ff;
        border: 1px solid #bfdbfe;
        color: #1d4ed8;
        border-radius: 8px;
        padding: 10px 12px;
        margin-bottom: 14px;
        font-size: 0.9rem;
    }

    .sync-note.error {
        background: #fff7ed;
        border-color: #fdba74;
        color: #9a3412;
    }

    .checkout-btn {
        background: #4f46e5;
        color: white;
        border: none;
        padding: 12px 30px;
        border-radius: 8px;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.2s;
    }

    .checkout-btn:hover {
        background: #4338ca;
        transform: translateY(-1px);
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .section-description {
        color: #6b7280;
        margin-bottom: 25px;
    }

    .sessions-list {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .session-card {
        border: 2px solid #e5e7eb;
        border-radius: 10px;
        padding: 20px;
        cursor: pointer;
        transition: all 0.2s;
        display: flex;
        gap: 16px;
        align-items: center;
    }

    .session-card:hover:not(.full) {
        background-color: #f9fafb;
        border-color: #d1d5db;
    }

    .session-card.selected {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        border-color: #667eea;
    }

    .session-card.full {
        background-color: #fee2e2;
        border-color: #fecaca;
        cursor: not-allowed;
    }

    .date-tile {
        flex-shrink: 0;
        width: 60px;
        height: 60px;
        background-color: #f3f4f6;
        border-radius: 8px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        font-weight: 600;
    }

    .session-card.selected .date-tile {
        background-color: rgba(255, 255, 255, 0.2);
    }

    .session-card.full .date-tile {
        background-color: #fecaca;
    }

    .date-tile-month {
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 2px;
    }

    .date-tile-day {
        font-size: 1.5rem;
        line-height: 1;
    }

    .session-content {
        flex: 1;
        min-width: 0;
    }

    .session-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .session-date {
        font-size: 1.1rem;
        font-weight: 600;
    }

    .session-meta {
        font-size: 0.9rem;
        margin-top: 5px;
        display: flex;
        align-items: center;
        gap: 8px;
        flex-wrap: wrap;
    }

    .spots-pill {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background-color: #f3f4f6;
        padding: 4px 10px;
        border-radius: 12px;
        font-size: 0.85rem;
    }

    .session-card.selected .spots-pill {
        background-color: rgba(255, 255, 255, 0.2);
    }

    .capacity-dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        flex-shrink: 0;
    }

    .capacity-high {
        background-color: #10b981;
    }

    .capacity-medium {
        background-color: #f59e0b;
    }

    .capacity-low {
        background-color: #ef4444;
    }

    .venue-pill {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-size: 0.85rem;
        color: #9ca3af;
    }

    .session-card.selected .venue-pill {
        color: rgba(255, 255, 255, 0.7);
    }

    .venue-pill svg {
        width: 12px;
        height: 12px;
        flex-shrink: 0;
    }

    .meta-separator {
        color: #d1d5db;
    }

    .session-card.selected .meta-separator {
        color: rgba(255, 255, 255, 0.5);
    }

    .session-card.selected .session-meta {
        opacity: 0.9;
    }

    .session-card.full .session-meta {
        color: #991b1b;
    }

    .session-price {
        text-align: right;
    }

    .session-status {
        font-size: 0.85rem;
        font-weight: 500;
        margin-bottom: 5px;
    }

    .price-amount {
        font-size: 1.2rem;
        font-weight: 700;
    }

    /* Checkout Form Styles */
    .checkout-container {
        max-width: 500px;
        margin: 0 auto;
    }

    .back-btn {
        background: none;
        border: none;
        color: #667eea;
        font-size: 1rem;
        cursor: pointer;
        margin-bottom: 20px;
        padding: 8px 0;
    }

    .back-btn:hover {
        text-decoration: underline;
    }

    .selected-sessions {
        background: #f3f4f6;
        border-radius: 10px;
        padding: 20px;
        margin-bottom: 25px;
    }

    .selected-sessions h3 {
        margin-bottom: 12px;
    }

    .selected-session-item {
        padding: 12px 0;
        border-bottom: 1px solid #f3f4f6;
        display: flex;
        align-items: center;
        gap: 12px;
        cursor: pointer;
        transition: all 0.2s;
    }

    .selected-session-item:last-child {
        border-bottom: none;
    }

    .selected-session-item.deselected {
        opacity: 0.5;
    }

    .selected-session-item.deselected .session-text {
        text-decoration: line-through;
        color: #9ca3af;
    }

    .session-checkbox {
        width: 20px;
        height: 20px;
        border: 2px solid #d1d5db;
        border-radius: 4px;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.2s;
        background: white;
    }

    .session-checkbox.checked {
        background: #4f46e5;
        border-color: #4f46e5;
    }

    .session-checkbox svg {
        width: 14px;
        height: 14px;
        color: white;
        display: none;
    }

    .session-checkbox.checked svg {
        display: block;
    }

    .session-text {
        flex: 1;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        transition: all 0.2s;
    }

    .session-details {
        color: #374151;
        font-size: 0.95rem;
    }

    .session-price-individual {
        color: #6b7280;
        font-size: 0.95rem;
        font-weight: 500;
        flex-shrink: 0;
    }

    .selected-session-item.deselected .session-price-individual {
        opacity: 0;
    }

    .selected-session-item:hover {
        background: #f9fafb;
    }

    .total-row {
        margin-top: 15px;
        padding-top: 15px;
        border-top: 1px solid #d1d5db;
        display: flex;
        justify-content: space-between;
        font-weight: 600;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-group label {
        display: block;
        font-weight: 500;
        margin-bottom: 8px;
        color: #374151;
    }

    .form-group input {
        width: 100%;
        padding: 12px;
        border: 1px solid #d1d5db;
        border-radius: 8px;
        font-size: 1rem;
    }

    .form-group input:focus {
        outline: none;
        border-color: #667eea;
        box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    }

    .price-input-wrapper {
        position: relative;
    }

    .price-input-wrapper::before {
        content: '$';
        position: absolute;
        left: 12px;
        top: 12px;
        color: #6b7280;
    }

    .price-input-wrapper input {
        padding-left: 28px;
    }

    .form-hint {
        font-size: 0.85rem;
        color: #6b7280;
        margin-top: 5px;
    }

    .pricing-explanation {
        background: #f9fafb;
        border-radius: 10px;
        padding: 20px;
        margin-top: 12px;
    }

    .pricing-explanation h3 {
        font-size: 0.95rem;
        font-weight: 500;
        margin-bottom: 12px;
        color: #374151;
    }

    .pricing-explanation p {
        font-size: 0.9rem;
        color: #6b7280;
        margin-bottom: 8px;
        line-height: 1.5;
    }

    .pricing-explanation .barrier-link {
        font-size: 0.9rem;
        color: #6b7280;
        text-decoration: none;
        border-bottom: 1px solid transparent;
        transition: all 0.2s;
        display: inline-block;
    }

    .pricing-explanation .barrier-link:hover {
        color: #374151;
        border-bottom-color: #374151;
    }

    .price-buttons {
        display: flex;
        gap: 8px;
        justify-content: space-between;
        flex-wrap: wrap;
        width: 100%;
    }

    .price-button {
        flex: 1;
        min-width: 60px;
        padding: 12px 20px;
        border: 2px solid #e5e7eb;
        background: white;
        border-radius: 8px;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.2s;
        color: #374151;
    }

    .price-button:hover {
        border-color: #d1d5db;
        background-color: #f9fafb;
    }

    .price-button.selected {
        background: #4f46e5;
        color: white;
        border-color: #4f46e5;
    }

    .price-button.suggested:not(.selected) {
        border-color: #4f46e5;
        background-color: #f3f4f6;
        color: #4f46e5;
    }

    .submit-btn {
        width: 100%;
        background: #4f46e5;
        color: white;
        border: none;
        padding: 15px;
        border-radius: 8px;
        font-size: 1.1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.2s;
    }

    .submit-btn:hover {
        background: #4338ca;
        transform: translateY(-1px);
    }

    .footer {
        text-align: center;
        color: #6b7280;
        margin-top: 30px;
    }

    /* Mobile responsive styles */
    @media (max-width: 768px) {
        .container {
            max-width: 100%;
        }

        .card {
            padding: 20px;
        }

        .summary-bar {
            padding: 16px;
        }

        .checkout-container {
            max-width: 100%;
        }

        .price-button {
            flex: 1;
            min-width: 50px;
            padding: 10px 12px;
            font-size: 0.95rem;
        }

        .header h1 {
            font-size: 2rem;
        }

        .header p {
            font-size: 1rem;
        }

        .floating-checkout {
            padding: 12px 16px;
        }

        .session-card {
            padding: 16px;
        }

        .selected-sessions {
            padding: 16px;
        }

        .session-meta {
            flex-direction: column;
            align-items: flex-start;
            gap: 6px;
        }

        .room-time-wrapper {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .room-time-wrapper .meta-separator {
            display: none;
        }
    }
}

.floating-checkout {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    color: #111827;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    background: white;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    border-radius: 0;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transform: translateY(100%);
    transition: transform 0.3s ease, opacity 0.2s ease, visibility 0.2s ease;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 1000;
}

.floating-checkout.visible {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.floating-checkout.empty {
    display: none;
}

.floating-checkout .summary-info h3 {
    margin: 0;
    font-size: 1rem;
}

.floating-checkout .checkout-btn {
    background: #4f46e5;
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.floating-checkout .checkout-btn:hover {
    background: #4338ca;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .floating-checkout {
        padding: 12px 16px;
    }
}
