/* Event Planner Frontend Styles */

:root {
    /* Primary Brand Colors - Unified Design System */
    --primary-color: #4F46E5;
    --primary-dark: #4338CA;
    --primary-light: #818CF8;
    --secondary-color: #7C3AED;
    --secondary-dark: #6D28D9;
    --secondary-light: #A78BFA;
    --accent-color: #EC4899;
    --accent-dark: #DB2777;

    /* Semantic Colors */
    --success-color: #10B981;
    --success-dark: #059669;
    --success-light: #34D399;
    --warning-color: #F59E0B;
    --warning-dark: #D97706;
    --warning-light: #FBBF24;
    --danger-color: #EF4444;
    --danger-dark: #DC2626;
    --danger-light: #F87171;
    --info-color: #3B82F6;
    --info-dark: #2563EB;
    --info-light: #60A5FA;

    /* Neutral Grays */
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
    --gradient-secondary: linear-gradient(135deg, #EC4899 0%, #7C3AED 100%);
    --gradient-success: linear-gradient(135deg, #10B981 0%, #059669 100%);
    --gradient-sunset: linear-gradient(135deg, #F59E0B 0%, #EC4899 100%);
    --gradient-ocean: linear-gradient(135deg, #3B82F6 0%, #4F46E5 100%);

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 6px;
    --radius-lg: 8px;
    --radius-xl: 12px;
    --radius-2xl: 16px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 200ms ease;
    --transition-slow: 300ms ease;
}

/* Form Containers */
.epf-login-container,
.epf-register-container {
    max-width: 480px;
    margin: 3rem auto;
    padding: 0 1rem;
}

.epf-form-wrapper {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.epf-form-wrapper h2 {
    margin: 0 0 2rem;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-900);
    text-align: center;
}

/* Forms */
.epf-form .form-group {
    margin-bottom: 1.5rem;
}

.epf-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--gray-700);
    font-size: 0.875rem;
}

.epf-form .form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.2s;
    box-sizing: border-box;
}

.epf-form .form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.epf-form .checkbox-group label {
    display: flex;
    align-items: center;
    font-weight: 400;
}

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

.epf-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 640px) {
    .epf-form .form-row {
        grid-template-columns: 1fr;
    }
}

/* Buttons - Enhanced Modern Design */
.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--radius-lg);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    display: inline-block;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left var(--transition-slow);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--gradient-secondary);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-success {
    background: var(--gradient-success);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-danger {
    background-color: var(--danger-color);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-danger:hover {
    background-color: var(--danger-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
    display: block;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Messages */
.epf-form-message {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    display: none;
}

.epf-form-message.success {
    background: #D1FAE5;
    color: #065F46;
    border: 1px solid #10B981;
    display: block;
}

.epf-form-message.error {
    background: #FEE2E2;
    color: #991B1B;
    border: 1px solid #EF4444;
    display: block;
}

/* Error Message for Dashboard Access */
.epf-error-message {
    max-width: 800px;
    margin: 4rem auto;
    padding: 2rem;
    background: linear-gradient(135deg, #FEE2E2 0%, #FECACA 100%);
    border: 2px solid #EF4444;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.epf-error-message p {
    font-size: 1.125rem;
    color: #991B1B;
    font-weight: 500;
    margin: 0;
    line-height: 1.6;
}

/* Info Message for Already Registered */
.epf-info-message {
    max-width: 800px;
    margin: 4rem auto;
    padding: 2rem;
    background: linear-gradient(135deg, #DBEAFE 0%, #BFDBFE 100%);
    border: 2px solid #3B82F6;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.epf-info-message p {
    font-size: 1.125rem;
    color: #1E40AF;
    font-weight: 500;
    margin: 0;
    line-height: 1.6;
}

.epf-info-message a {
    color: #1E40AF;
    font-weight: 700;
    text-decoration: underline;
    transition: color 200ms ease;
}

.epf-info-message a:hover {
    color: #1E3A8A;
}

.epf-form-footer {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--gray-600);
}

.epf-form-footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.epf-form-footer a:hover {
    text-decoration: underline;
}

/* Dashboard */
.epf-client-dashboard,
.epf-vendor-dashboard,
.epf-event-details {
    max-width: 1400px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.dashboard-header h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0;
}

/* Dashboard Stats */
.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all var(--transition-base);
    border: 1px solid var(--gray-100);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-icon {
    font-size: 2.5rem;
}

.stat-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0 0 0.25rem;
}

.stat-content p {
    margin: 0;
    color: var(--gray-600);
    font-size: 0.875rem;
}

/* Dashboard Navigation */
.dashboard-nav {
    display: flex;
    gap: 0.5rem;
    border-bottom: 2px solid var(--gray-200);
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 1rem 1.5rem;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray-600);
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.2s;
    margin-bottom: -2px;
}

.tab-btn:hover {
    color: var(--primary-color);
}

.tab-btn.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

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

.tab-content.active {
    display: block;
}

.tab-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0 0 1.5rem;
}

.tab-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.tab-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
    margin: 0;
}

/* Event Cards */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.event-card {
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transition: all var(--transition-base);
    border: 1px solid var(--gray-100);
    position: relative;
}

.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.event-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.event-card:hover::before {
    opacity: 1;
}

.event-card-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.event-card-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
    margin: 0;
}

.event-card-body {
    padding: 1.5rem;
}

.event-card-body p {
    margin: 0.5rem 0;
    color: var(--gray-600);
}

.event-card-actions {
    padding: 1rem 1.5rem;
    background: var(--gray-50);
    display: flex;
    gap: 0.5rem;
    justify-content: flex-end;
}

/* Badges - Enhanced */
.badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all var(--transition-base);
}

.badge-large {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
}

.badge-upcoming,
.badge-pending,
.badge-active {
    background: linear-gradient(135deg, #DBEAFE 0%, #BFDBFE 100%);
    color: var(--info-dark);
}

.badge-completed,
.badge-accepted,
.badge-paid {
    background: #D1FAE5;
    color: #065F46;
}

.badge-cancelled,
.badge-declined,
.badge-overdue {
    background: #FEE2E2;
    color: #991B1B;
}

.badge-ongoing,
.badge-in_progress {
    background: #FEF3C7;
    color: #92400E;
}

.badge-vip,
.badge-preferred {
    background: #F3E8FF;
    color: #6B21A8;
}

.priority {
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.priority-low {
    background: var(--gray-200);
    color: var(--gray-700);
}

.priority-medium {
    background: #DBEAFE;
    color: #1E40AF;
}

.priority-high {
    background: #FED7AA;
    color: #9A3412;
}

.priority-urgent {
    background: #FEE2E2;
    color: #991B1B;
}

/* Tables */
.event-table {
    width: 100%;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.event-table table {
    width: 100%;
    border-collapse: collapse;
}

.event-table thead {
    background: var(--gray-50);
}

.event-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: var(--gray-700);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.event-table td {
    padding: 1rem;
    border-top: 1px solid var(--gray-200);
    color: var(--gray-700);
}

.event-table tbody tr:hover {
    background: var(--gray-50);
}

/* Vendor Cards */
.vendors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.vendor-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.vendor-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
    margin: 0 0 0.5rem;
}

.vendor-company {
    color: var(--gray-600);
    font-size: 0.875rem;
    margin: 0 0 1rem;
}

.vendor-service,
.vendor-contact p {
    margin: 0.5rem 0;
    font-size: 0.875rem;
    color: var(--gray-600);
}

.vendor-rating {
    color: #FBBF24;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

/* Event Details */
.event-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.event-title-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.event-title-section h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0;
}

.event-overview {
    margin-bottom: 2rem;
}

.overview-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.overview-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-900);
    margin: 0 0 1.5rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.info-label {
    font-weight: 600;
    color: var(--gray-700);
    font-size: 0.875rem;
}

.info-value {
    color: var(--gray-900);
    font-size: 1rem;
}

.event-description {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
}

.event-description h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
    margin: 0 0 1rem;
}

/* RSVP Stats */
.rsvp-stats {
    display: flex;
    gap: 2rem;
    padding: 1.5rem;
    background: var(--gray-50);
    border-radius: 8px;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stat-label {
    font-weight: 500;
    color: var(--white-700);
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
}

.stat-value.accepted {
    color: var(--success-color);
}

.stat-value.declined {
    color: var(--danger-color);
}

.stat-value.pending {
    color: var(--warning-color);
}

/* Forms within content */
.epf-form-section {
    background: var(--gray-50);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.epf-form-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
    margin: 0 0 1rem;
}

.inline-form .form-row {
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
}

.inline-form .form-group {
    margin-bottom: 0;
    flex: 1;
}

/* Tasks */
.tasks-list {
    display: grid;
    gap: 1rem;
}

.task-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.task-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.task-header h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
    margin: 0;
}

.task-badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.task-description {
    margin: 0.5rem 0;
    color: var(--gray-600);
}

.task-due {
    margin: 0.5rem 0 0;
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* Budget */
.budget-summary {
    margin-bottom: 2rem;
}

.budget-card {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 2rem;
    border-radius: 12px;
}

.budget-card h4 {
    margin: 0 0 0.5rem;
    font-size: 1rem;
    opacity: 0.9;
}

.budget-amount {
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
}

/* No items messages */
.no-events,
.no-items {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--gray-600);
}

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

    .event-title-section h1 {
        font-size: 1.5rem;
    }

    .dashboard-stats {
        grid-template-columns: 1fr;
    }

    .events-grid,
    .vendors-grid {
        grid-template-columns: 1fr;
    }

    .stat-content h3 {
        font-size: 1.5rem;
    }

    .budget-amount {
        font-size: 2rem;
    }
}

/* Loading spinner */
.epf-loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 0.8s linear infinite;
}

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

/* Vendor filters */
.vendor-filters {
    margin-bottom: 1.5rem;
}

.vendor-filters select {
    max-width: 300px;
}

/* Vendor Items (in event details) */
.vendors-list {
    display: grid;
    gap: 1rem;
}

.vendor-item {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    overflow: hidden;
}

.vendor-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
    gap: 1rem;
}

.vendor-info h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
    margin: 0 0 0.25rem;
}

.vendor-info .vendor-company {
    margin: 0;
    color: var(--gray-600);
    font-size: 0.875rem;
}

.vendor-status-badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.vendor-item-body {
    padding: 1.5rem;
}

.vendor-item-body .service-note {
    margin: 0 0 1rem;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: 6px;
}

.vendor-contact {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-top: 1rem;
}

.vendor-item-actions {
    padding: 1rem 1.5rem;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
}

/* Vendor Event Invitations */
.vendor-event-invitation {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.vendor-event-invitation .event-title-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.vendor-event-invitation .event-title-section h3 {
    margin: 0;
}

.vendor-event-invitation .event-details {
    padding: 1.5rem;
}

.vendor-event-invitation .info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 640px) {
    .vendor-event-invitation .info-grid {
        grid-template-columns: 1fr;
    }
}

.service-note-box {
    padding: 1rem;
    background: #EEF2FF;
    border-left: 4px solid var(--primary-color);
    border-radius: 6px;
    margin: 1rem 0;
}

.service-note-box strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.service-note-box p {
    margin: 0;
    color: var(--gray-700);
}

.vendor-response-actions {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.vendor-response-actions .status-message {
    flex: 1;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    font-weight: 500;
}

.vendor-response-actions .status-message.success {
    background: #D1FAE5;
    color: #065F46;
}

.vendor-response-actions .status-message.declined {
    background: #FEE2E2;
    color: #991B1B;
}

.btn-success {
    background: var(--success-color);
    color: white;
}

.btn-success:hover {
    background: #059669;
}

.tab-description {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

/* Form helper text */
.form-text {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: var(--gray-600);
}

.badge-confirmed {
    background: #D1FAE5;
    color: #065F46;
}
