/* Booking Page Specific Styles */

body {
    background: #f8fafb;
}

/* User Info Banner */
.user-info-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 0;
    width: 100%;
}

.user-info-banner.hidden {
    display: none;
}

.user-info-banner .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.banner-text {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    flex: 1;
}

.banner-text i {
    font-size: 1.2rem;
}

.btn-use-saved {
    background: white;
    color: #667eea;
    border: none;
    padding: 0.5rem 1.25rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-use-saved:hover {
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.btn-use-saved:active {
    transform: scale(0.98);
}

.booking-container {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 2rem;
    max-width: 1600px;
    margin: 1rem auto 2rem auto;
    padding: 0 20px;
}

.booking-wrapper {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 3rem;
}

/* Progress Bar */
.progress-section {
    margin-bottom: 3rem;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: #e5e5e5;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #024751, #ff5416);
    width: 25%;
    transition: width 0.3s ease;
}

.steps-indicator {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 0.25rem;
    flex-wrap: nowrap;
    width: 100%;
}

.step-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
    opacity: 0.5;
    transition: opacity 0.3s ease;
    flex: 0 0 auto;
    white-space: nowrap;
    padding: 0 0.25rem;
}

.step-indicator.active {
    opacity: 1;
}

.step-indicator span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #e5e5e5;
    border-radius: 50%;
    font-weight: bold;
    color: #666;
    transition: all 0.3s ease;
}

.step-indicator.active span {
    background: var(--primary-color);
    color: white;
}

.step-indicator p {
    font-size: 0.65rem;
    color: #666;
    margin: 0;
    text-align: center;
    line-height: 1.1;
}

.step-indicator.active p {
    color: var(--primary-color);
    font-weight: 600;
}

/* Form Steps */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-step h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.step-description {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

/* Step 1: Service Options */
.service-options {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.service-option {
    position: relative;
    cursor: pointer;
}

.service-option input[type="radio"] {
    display: none;
}

.option-content {
    padding: 1.5rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.service-option input[type="radio"]:checked + .option-content {
    border-color: var(--accent-color);
    background: #fff5f0;
    box-shadow: 0 5px 15px rgba(255, 84, 22, 0.15);
}

.option-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.option-header h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.option-header i {
    color: var(--accent-color);
}

.price {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.1rem;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.option-content > p {
    color: var(--text-light);
    margin: 0.5rem 0 1rem 0;
}

.features-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.features-list li {
    color: var(--text-light);
    font-size: 0.95rem;
    padding-left: 1.5rem;
    position: relative;
}

.features-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Step 2: Form Groups */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(255, 84, 22, 0.1);
}

.form-group.checkbox {
    margin-bottom: 1rem;
}

.form-group.checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-group.checkbox label {
    display: flex;
    align-items: center;
    font-weight: 500;
    cursor: pointer;
    gap: 0.5rem;
    margin: 0;
}

.form-group.checkbox input[type="checkbox"],
.checkbox-item input[type="checkbox"] {
    width: auto;
    height: auto;
    margin: 0;
    cursor: pointer;
    vertical-align: middle;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 1rem;
    background: #f9f9f9;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
}

.checkbox-item {
    display: flex;
    align-items: center;
    font-weight: 500;
    cursor: pointer;
    gap: 0.5rem;
    margin: 0;
}

.checkbox-item input[type="checkbox"] {
    margin-right: 0.5rem;
}

.checkbox-item:hover {
    color: var(--accent-color);
}

.checkbox-group .add-on-service {
    flex-direction: row;
    padding: 0.75rem 1rem;
    background: white;
    border: 1px solid #e5e5e5;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.checkbox-group .add-on-service input[type="checkbox"] {
    order: 2;
    width: auto;
    margin: 0;
}

.checkbox-group .add-on-service label {
    order: 1;
    margin: 0;
}

.add-on-service:hover {
    background: #f9f9f9;
    border-color: var(--accent-color);
}

.form-group textarea {
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

small {
    display: block;
    color: var(--text-light);
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

/* Step 3: Schedule */
.schedule-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.date-picker-wrapper,
.time-picker-wrapper,
.frequency-wrapper {
    display: flex;
    flex-direction: column;
}

.date-picker-wrapper label,
.time-picker-wrapper label,
.frequency-wrapper label {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.date-picker-wrapper input {
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
}

.time-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.time-slot {
    position: relative;
    cursor: pointer;
}

.time-slot input[type="radio"] {
    display: none;
}

.time-slot span {
    display: block;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    color: var(--text-dark);
    font-weight: 500;
}

.time-slot input[type="radio"]:checked + span {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.frequency-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.frequency-option {
    position: relative;
    cursor: pointer;
}

.frequency-option input[type="radio"] {
    display: none;
}

.frequency-option span {
    display: block;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    color: var(--text-dark);
    font-weight: 500;
}

.frequency-option input[type="radio"]:checked + span {
    background: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
}

/* Step 4: Summary */
.booking-summary {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.booking-summary h3 {
    color: var(--primary-color);
    margin: 0 0 1rem 0;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    color: var(--text-dark);
}

.summary-item span {
    color: var(--text-light);
}

.summary-item strong {
    color: var(--primary-color);
}

.summary-divider {
    height: 1px;
    background: var(--border-color);
    margin: 1rem 0;
}

.summary-item.total {
    border-top: 2px solid var(--border-color);
    font-size: 1.2rem;
    font-weight: 600;
}

.summary-item.total strong {
    color: var(--accent-color);
}

.contact-form-section {
    margin-top: 2rem;
}

.contact-form-section h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

/* Form Actions */
.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: space-between;
}

.btn-back,
.btn-next,
.btn-submit {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
}

.btn-back {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-back:hover {
    background: var(--light-bg);
}

.btn-next,
.btn-submit {
    background: var(--primary-color);
    color: white;
}

.btn-next:hover,
.btn-submit:hover {
    background: #033a42;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(2, 71, 81, 0.3);
}

.btn-submit {
    background: var(--accent-color);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-submit:hover {
    background: #e63f0f;
    box-shadow: 0 5px 15px rgba(255, 84, 22, 0.3);
}

/* Sidebar */
.booking-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.sidebar-card h3 {
    color: var(--primary-color);
    font-size: 1rem;
    margin: 0 0 0.5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.sidebar-card i {
    color: var(--accent-color);
    font-size: 1.3rem;
}

.sidebar-card p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
}

.faq-card {
    background: linear-gradient(135deg, var(--primary-color), #066b7e);
    color: white;
    border-color: var(--primary-color);
}

.faq-card h4 {
    color: white;
    margin: 0 0 1rem 0;
}

.faq-card p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0.5rem 0;
}

.faq-card i {
    color: var(--accent-color);
}

/* Price Calculator */
.price-calculator {
    background: linear-gradient(135deg, #f0f8ff, #ffffff);
    border: 2px solid var(--primary-color);
}

.price-calculator h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 1rem;
}

#priceCalculator {
    min-height: 150px;
}

.calculator-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e5e5e5;
    font-size: 0.95rem;
}

.calculator-item.small {
    font-size: 0.85rem;
    padding: 0.5rem 0;
}

.calculator-item span {
    color: #666;
}

.calculator-item strong {
    color: var(--primary-color);
    font-weight: 600;
}

.calculator-divider {
    height: 2px;
    background: var(--accent-color);
    margin: 1rem 0;
}

.calculator-total {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    font-size: 1.1rem;
}

.calculator-total span {
    color: var(--primary-color);
    font-weight: 600;
}

.calculator-total strong {
    color: var(--accent-color);
    font-size: 1.3rem;
}

/* Success Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.modal-overlay.hidden {
    display: none !important;
    opacity: 0;
    pointer-events: none;
}

.modal-content {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    text-align: center;
}

.success-modal {
    padding: 3rem 2rem;
}

.success-icon {
    font-size: 4rem;
    color: var(--success-color);
    margin-bottom: 1rem;
}

.success-modal h2 {
    color: var(--primary-color);
    margin: 0 0 1rem 0;
}

.success-modal p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.success-subtitle {
    font-size: 1rem !important;
    color: var(--text-light) !important;
    margin-bottom: 2rem !important;
}

.confirmation-details {
    background: #f0f7ff;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border: 2px solid var(--primary-color);
}

.detail-item {
    text-align: center;
}

.detail-item label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.cleaning-id {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    font-family: 'Courier New', monospace;
    letter-spacing: 2px;
}

.email-notification {
    background: #fff8e1;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid #ffc107;
}

.notification-icon {
    font-size: 1.8rem;
    color: #ffc107;
    margin-bottom: 0.5rem;
}

.email-notification p {
    margin: 0.5rem 0;
    color: var(--text-dark);
}

.email-notification strong {
    color: var(--text-dark);
}

.action-buttons {
    display: flex;
    gap: 1rem;
    flex-direction: column;
    margin-top: 2rem;
}

.action-buttons a {
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.confirmation-details span {
    color: var(--accent-color);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 1024px) {
    .booking-container {
        grid-template-columns: 1fr;
    }

    .booking-sidebar {
        flex-direction: row;
        gap: 1rem;
    }

    .sidebar-card {
        flex: 1;
    }
}

@media (max-width: 768px) {
    .booking-wrapper {
        padding: 1.5rem;
    }

    .step-indicator span {
        width: 38px;
        height: 38px;
        font-size: 0.95rem;
    }

    .step-indicator p {
        font-size: 0.6rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .features-list {
        grid-template-columns: 1fr;
    }

    .time-options,
    .frequency-options {
        grid-template-columns: 1fr;
    }

    .checkbox-group {
        grid-template-columns: 1fr;
    }
}

    .form-actions {
        flex-direction: column;
    }

    .btn-back,
    .btn-next {
        margin-left: 0;
    }

    .booking-sidebar {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .booking-wrapper {
        padding: 1rem;
    }

    .step-indicator span {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .form-step h2 {
        font-size: 1.5rem;
    }

    .option-header {
        flex-direction: column;
        gap: 0.5rem;
    }

    .price {
        align-self: flex-start;
    }

    .time-options {
        grid-template-columns: 1fr;
    }

    .btn-back,
    .btn-next,
    .btn-submit {
        width: 100%;
    }
}

/* ====================================================
   CHOICE SCREEN (Pre-Step 0)
   ==================================================== */

.choice-screen {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 20px;
    background: linear-gradient(135deg, #f0f4f8 0%, #ffffff 60%, #fff5f0 100%);
    animation: fadeIn 0.4s ease;
}

.choice-screen.hiding {
    animation: choiceSlideUp 0.45s ease forwards;
}

@keyframes choiceSlideUp {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-40px);
    }
}

.choice-screen-inner {
    max-width: 900px;
    width: 100%;
    text-align: center;
}

.choice-screen-header {
    margin-bottom: 3rem;
}

.choice-screen-header h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.choice-screen-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.choice-cards {
    display: flex;
    align-items: stretch;
    gap: 0;
    justify-content: center;
}

.choice-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    flex: 1;
    max-width: 360px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--border-color);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    position: relative;
    text-align: center;
    cursor: default;
}

.choice-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(2, 71, 81, 0.15);
    border-color: var(--primary-color);
}

.choice-card-gift:hover {
    border-color: var(--accent-color);
    box-shadow: 0 12px 40px rgba(255, 84, 22, 0.18);
}

.choice-card-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: white;
    padding: 4px 18px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
}

.choice-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e8f4f6, #d0edf2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    font-size: 2rem;
    color: var(--primary-color);
    transition: background 0.25s ease;
}

.choice-card-gift .choice-card-icon {
    background: linear-gradient(135deg, #fff0ec, #ffe0d6);
    color: var(--accent-color);
}

.choice-card h2 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.choice-card-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.choice-card-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    padding: 0;
}

.choice-card-features li {
    font-size: 0.9rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.choice-card-features li i {
    color: var(--success-color);
    font-size: 0.8rem;
    flex-shrink: 0;
}

.choice-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.85rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
}

.choice-cta-btn:hover {
    background: #033a42;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(2, 71, 81, 0.3);
}

.choice-cta-gift {
    background: var(--accent-color);
}

.choice-cta-gift:hover {
    background: #e63f0f;
    box-shadow: 0 5px 15px rgba(255, 84, 22, 0.3);
}

.choice-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1.5rem;
    flex-shrink: 0;
}

.choice-divider span {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 500;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive choice screen */
@media (max-width: 768px) {
    .choice-screen-header h1 {
        font-size: 1.8rem;
    }

    .choice-cards {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .choice-card {
        max-width: 100%;
        width: 100%;
    }

    .choice-divider {
        padding: 0;
    }

    .choice-divider span {
        width: 36px;
        height: 36px;
    }
}

/* ====================================================
   RECIPIENT INFO SECTION (Book for Someone)
   ==================================================== */

.recipient-info-section {
    background: linear-gradient(135deg, #fff8f5, #fff0eb);
    border: 2px solid var(--accent-color);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    position: relative;
}

.recipient-section-heading {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin: 0 0 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.recipient-section-subtitle {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

/* ====================================================
   PROFILE COMPLETENESS TOAST
   ==================================================== */

.profile-incomplete-toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: #fff;
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--accent-color);
    border-radius: 8px;
    padding: 1rem 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    z-index: 9998;
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 480px;
    width: 90%;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.profile-incomplete-toast.visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.profile-incomplete-toast .toast-icon {
    font-size: 1.3rem;
    color: var(--accent-color);
    flex-shrink: 0;
}

.profile-incomplete-toast .toast-message {
    flex: 1;
    font-size: 0.9rem;
    color: var(--text-dark);
    line-height: 1.4;
    margin: 0;
}

.profile-incomplete-toast .toast-link {
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: underline;
    white-space: nowrap;
}

.profile-incomplete-toast .toast-close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-light);
    font-size: 1rem;
    padding: 0;
    flex-shrink: 0;
}
