/* ==========================================
   NeedLove - Tester Pages Styles
   ========================================== */

/* Tester Onboarding Page */
.tester-onboarding {
    padding-top: 120px;
    padding-bottom: var(--space-4xl);
    min-height: 100vh;
    background: var(--color-bg);
}

.onboarding-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.onboarding-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-xl);
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.onboarding-icon svg {
    width: 40px;
    height: 40px;
}

.onboarding-header h1 {
    margin-bottom: var(--space-md);
}

.onboarding-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

.onboarding-content {
    max-width: 800px;
    margin: 0 auto;
}

.onboarding-section {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    margin-bottom: var(--space-xl);
}

.section-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.1) 0%, rgba(184, 134, 11, 0.05) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    margin-bottom: var(--space-lg);
}

.section-icon svg {
    width: 24px;
    height: 24px;
}

.section-icon-scenarios {
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.1) 0%, rgba(39, 174, 96, 0.05) 100%);
    color: var(--color-success);
}

.section-icon-benefits {
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.15) 0%, rgba(184, 134, 11, 0.05) 100%);
    color: var(--color-primary);
}

.onboarding-section h2 {
    font-size: 1.5rem;
    margin-bottom: var(--space-lg);
}

/* Requirements List */
.requirements-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.requirements-list li {
    display: flex;
    gap: var(--space-lg);
    align-items: flex-start;
}

.req-number {
    width: 32px;
    height: 32px;
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.req-content strong {
    display: block;
    margin-bottom: var(--space-xs);
    color: var(--color-secondary);
}

.req-content p {
    font-size: 0.9375rem;
    color: var(--color-text-light);
    margin: 0;
}

/* Scenarios List */
.scenarios-intro {
    color: var(--color-text-light);
    margin-bottom: var(--space-lg);
}

.scenarios-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.scenario-item {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
    padding: var(--space-md);
    background: var(--color-bg-alt);
    border-radius: var(--radius-md);
}

.scenario-number {
    width: 28px;
    height: 28px;
    background: var(--color-success);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8125rem;
    flex-shrink: 0;
}

.scenario-content strong {
    display: block;
    font-size: 0.9375rem;
    color: var(--color-secondary);
}

.scenario-content p {
    font-size: 0.8125rem;
    color: var(--color-text-light);
    margin: 0;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

@media (min-width: 640px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.benefit-item {
    text-align: center;
    padding: var(--space-lg);
    background: var(--color-bg-alt);
    border-radius: var(--radius-md);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto var(--space-md);
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.benefit-icon svg {
    width: 24px;
    height: 24px;
}

.benefit-item strong {
    display: block;
    margin-bottom: var(--space-xs);
    color: var(--color-secondary);
}

.benefit-item p {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin: 0;
}

/* Agreement Section */
.onboarding-agreement {
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-light) 100%);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    color: white;
}

.onboarding-agreement h3 {
    color: white;
    margin-bottom: var(--space-lg);
    font-size: 1.25rem;
}

.agreement-checkboxes {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.agreement-checkbox {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.agreement-checkbox input {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--color-primary);
}

.agreement-checkbox label {
    font-size: 0.9375rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.95);
}

.agreement-checkbox a {
    color: var(--color-primary-light);
    text-decoration: underline;
}

.agreement-actions {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

.agreement-actions .btn-outline {
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.agreement-actions .btn-outline:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
}

.agreement-note {
    text-align: center;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: var(--space-lg);
}

/* Modal Error State */
.modal-error .modal-icon-error {
    background: linear-gradient(135deg, var(--color-error) 0%, #C0392B 100%);
}

/* ==========================================
   Tester Dashboard Styles
   ========================================== */

.tester-dashboard {
    padding-top: 100px;
    padding-bottom: var(--space-4xl);
    min-height: 100vh;
    background: var(--color-bg-alt);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-2xl);
    flex-wrap: wrap;
    gap: var(--space-md);
}

.dashboard-header h1 {
    font-size: 1.75rem;
}

.dashboard-user {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.user-name {
    font-weight: 600;
    color: var(--color-secondary);
}

.btn-logout {
    font-size: 0.875rem;
    color: var(--color-text-light);
    text-decoration: underline;
}

.btn-logout:hover {
    color: var(--color-error);
}

/* Stats Cards */
.stats-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.stat-card {
    background: var(--color-bg);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.stat-card-value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
}

.stat-card-label {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-top: var(--space-sm);
}

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

/* Dashboard Sections */
.dashboard-section {
    background: var(--color-bg);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    margin-bottom: var(--space-xl);
    box-shadow: var(--shadow-sm);
}

.dashboard-section h2 {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-size: 1.25rem;
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--color-border);
}

.dashboard-section h2 svg {
    width: 24px;
    height: 24px;
    color: var(--color-primary);
}

/* Download Section */
.download-buttons {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg) var(--space-xl);
    background: var(--color-bg-alt);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.download-btn:hover {
    background: var(--color-border-light);
    transform: translateY(-2px);
}

.download-btn svg {
    width: 32px;
    height: 32px;
    color: var(--color-secondary);
}

.download-btn-text {
    display: flex;
    flex-direction: column;
}

.download-btn-text span:first-child {
    font-size: 0.75rem;
    color: var(--color-text-light);
}

.download-btn-text span:last-child {
    font-weight: 600;
    color: var(--color-secondary);
}

.download-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.download-note {
    margin-top: var(--space-lg);
    font-size: 0.875rem;
    color: var(--color-text-light);
}

.download-notice {
    margin-top: var(--space-lg);
    padding: var(--space-md) var(--space-lg);
    background: #FFF8E1;
    border: 1px solid #FFE082;
    border-radius: var(--radius-md);
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.download-notice svg {
    width: 24px;
    height: 24px;
    color: #F9A825;
    flex-shrink: 0;
    margin-top: 2px;
}

.download-notice p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--color-text);
    line-height: 1.5;
}

/* Scenarios Checklist */
.scenarios-checklist {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.checklist-item {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--color-bg-alt);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border-light);
    transition: all var(--transition-fast);
}

.checklist-item.completed {
    background: rgba(39, 174, 96, 0.05);
    border-color: rgba(39, 174, 96, 0.2);
}

.checklist-checkbox {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    accent-color: var(--color-success);
}

.checklist-content {
    flex: 1;
}

.checklist-title {
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: var(--space-xs);
}

.checklist-description {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-bottom: var(--space-sm);
}

.checklist-notes {
    width: 100%;
    padding: var(--space-sm);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    resize: vertical;
    min-height: 60px;
}

.checklist-notes:focus {
    outline: none;
    border-color: var(--color-primary);
}

.checklist-status {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.75rem;
    font-weight: 600;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-full);
    height: fit-content;
}

.status-pending {
    background: var(--color-bg);
    color: var(--color-text-light);
}

.status-completed {
    background: rgba(39, 174, 96, 0.1);
    color: var(--color-success);
}

.save-progress-btn {
    margin-top: var(--space-xl);
}

/* Feedback Form */
.feedback-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.rating-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.rating-group label {
    font-weight: 600;
    color: var(--color-secondary);
}

.rating-stars {
    display: flex;
    gap: var(--space-sm);
}

.rating-star {
    width: 40px;
    height: 40px;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    background: var(--color-bg);
}

.rating-star:hover,
.rating-star.active {
    border-color: var(--color-primary);
    background: rgba(184, 134, 11, 0.1);
    color: var(--color-primary);
}

.rating-star svg {
    width: 24px;
    height: 24px;
}

.feedback-textarea {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.feedback-textarea label {
    font-weight: 600;
    color: var(--color-secondary);
}

.feedback-textarea textarea {
    width: 100%;
    padding: var(--space-md);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    font-size: 1rem;
    resize: vertical;
    min-height: 120px;
}

.feedback-textarea textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.1);
}

/* ==========================================
   Admin Dashboard Styles
   ========================================== */

.admin-dashboard {
    padding-top: 100px;
    padding-bottom: var(--space-4xl);
    min-height: 100vh;
    background: var(--color-bg-alt);
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-2xl);
    flex-wrap: wrap;
    gap: var(--space-md);
}

.admin-header h1 {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-size: 1.75rem;
}

.admin-header h1 svg {
    width: 32px;
    height: 32px;
    color: var(--color-primary);
}

/* Filters */
.admin-filters {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    margin-bottom: var(--space-xl);
}

.filter-select {
    padding: var(--space-sm) var(--space-md);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
    background: var(--color-bg);
}

.filter-search {
    flex: 1;
    min-width: 200px;
    padding: var(--space-sm) var(--space-md);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
}

/* Testers Table */
.testers-table-wrapper {
    background: var(--color-bg);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

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

.testers-table th,
.testers-table td {
    padding: var(--space-md) var(--space-lg);
    text-align: left;
    border-bottom: 1px solid var(--color-border-light);
}

.testers-table th {
    background: var(--color-bg-alt);
    font-weight: 600;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-light);
}

.testers-table tr:hover {
    background: var(--color-bg-alt);
}

.testers-table tr:last-child td {
    border-bottom: none;
}

.tester-name {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.tester-avatar {
    width: 36px;
    height: 36px;
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

.tester-email {
    font-size: 0.8125rem;
    color: var(--color-text-light);
}

.progress-bar {
    width: 100px;
    height: 8px;
    background: var(--color-border-light);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--color-success);
    border-radius: var(--radius-full);
    transition: width var(--transition-base);
}

.progress-text {
    font-size: 0.8125rem;
    color: var(--color-text-light);
    margin-top: var(--space-xs);
}

.feedback-status {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

.feedback-yes {
    background: rgba(39, 174, 96, 0.1);
    color: var(--color-success);
}

.feedback-no {
    background: var(--color-bg-alt);
    color: var(--color-text-light);
}

.action-btn {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    color: var(--color-text-light);
}

.action-btn:hover {
    background: var(--color-bg-alt);
    color: var(--color-secondary);
}

.action-btn svg {
    width: 18px;
    height: 18px;
}

.actions-cell {
    display: flex;
    gap: var(--space-xs);
}

/* Bulk Actions */
.bulk-actions {
    display: flex;
    gap: var(--space-md);
    align-items: center;
    padding: var(--space-lg);
    background: var(--color-bg);
    border-radius: var(--radius-lg);
    margin-top: var(--space-xl);
}

.bulk-actions-label {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

/* Tester Detail Modal */
.tester-detail-modal .modal-content {
    max-width: 600px;
    text-align: left;
}

.tester-detail-header {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--color-border);
}

.tester-detail-avatar {
    width: 64px;
    height: 64px;
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
}

.tester-detail-info h3 {
    margin-bottom: var(--space-xs);
}

.tester-detail-info p {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin: 0;
}

.tester-scenarios-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}

.tester-scenario {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-sm);
    background: var(--color-bg-alt);
    border-radius: var(--radius-sm);
}

.tester-scenario-status {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tester-scenario-status.completed {
    background: var(--color-success);
    color: white;
}

.tester-scenario-status.pending {
    background: var(--color-border);
}

.tester-scenario-status svg {
    width: 12px;
    height: 12px;
}

.tester-feedback-preview {
    background: var(--color-bg-alt);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-xl);
}

.tester-feedback-preview h4 {
    margin-bottom: var(--space-md);
}

.tester-feedback-preview p {
    font-size: 0.9375rem;
    color: var(--color-text-light);
}

/* Responsive */
@media (max-width: 768px) {
    .testers-table {
        display: block;
        overflow-x: auto;
    }

    .dashboard-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .admin-filters {
        flex-direction: column;
    }

    .filter-search {
        width: 100%;
    }
}

/* Login Required Message */
.login-required {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    text-align: center;
    padding: var(--space-2xl);
}

.login-required-icon {
    width: 80px;
    height: 80px;
    background: var(--color-bg-alt);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-xl);
    color: var(--color-text-light);
}

.login-required-icon svg {
    width: 40px;
    height: 40px;
}

.login-required h2 {
    margin-bottom: var(--space-md);
}

.login-required p {
    color: var(--color-text-light);
    margin-bottom: var(--space-xl);
    max-width: 400px;
}

/* Admin Login Form */
.admin-login-form {
    width: 100%;
    max-width: 360px;
    margin-top: var(--space-xl);
}

.admin-login-form .form-group {
    margin-bottom: var(--space-lg);
    text-align: left;
}

.admin-login-form label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: var(--color-text);
}

.admin-login-form input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    font-size: 1rem;
}

.admin-login-form input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.1);
}

/* ==========================================
   Tester Login Page
   ========================================== */

.tester-login-page {
    padding-top: 120px;
    padding-bottom: var(--space-4xl);
    min-height: 100vh;
    background: var(--color-bg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-card {
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: var(--space-3xl);
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
}

.login-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.login-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-lg);
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.login-icon svg {
    width: 28px;
    height: 28px;
}

.login-header h1 {
    font-size: 1.75rem;
    margin-bottom: var(--space-sm);
}

.login-subtitle {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.login-form {
    margin-bottom: var(--space-xl);
}

.login-form .form-group {
    margin-bottom: var(--space-lg);
}

.login-form label {
    display: block;
    font-weight: 500;
    margin-bottom: var(--space-xs);
    color: var(--color-text);
}

.login-form input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.login-form input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.1);
}

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

.form-error {
    background: rgba(220, 53, 69, 0.1);
    color: var(--color-error);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    margin-bottom: var(--space-lg);
}

.form-success {
    background: rgba(39, 174, 96, 0.1);
    color: var(--color-success);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    margin-bottom: var(--space-lg);
}

.btn-block {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-loader {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-loader .spinner {
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
}

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

.login-links {
    text-align: center;
    margin-top: var(--space-lg);
}

.login-links a {
    color: var(--color-primary);
    font-size: 0.9rem;
    text-decoration: none;
}

.login-links a:hover {
    text-decoration: underline;
}

.login-divider {
    position: relative;
    text-align: center;
    margin: var(--space-xl) 0;
}

.login-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--color-border);
}

.login-divider span {
    position: relative;
    background: white;
    padding: 0 var(--space-md);
    color: var(--color-text-light);
    font-size: 0.9rem;
}

.login-footer {
    text-align: center;
}

.login-footer p {
    color: var(--color-text-light);
    margin-bottom: var(--space-md);
    font-size: 0.95rem;
}

.login-footer .btn-outline {
    display: inline-block;
}

/* Modal Warning Style */
.modal-warning .modal-icon-warning {
    background: rgba(255, 193, 7, 0.1);
    color: #f0ad4e;
}

.modal-warning .modal-icon-warning svg {
    stroke: #f0ad4e;
}

.modal-actions {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    margin-top: var(--space-xl);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-lg);
}

.modal-header h3 {
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-text-light);
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s;
}

.modal-close:hover {
    background: var(--color-bg);
}

/* Responsive */
@media (max-width: 480px) {
    .login-card {
        padding: var(--space-xl);
        margin: 0 var(--space-md);
    }

    .login-header h1 {
        font-size: 1.5rem;
    }

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

    .modal-actions .btn {
        width: 100%;
    }
}

/* Login Required Actions */
.login-required-actions {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    margin-top: var(--space-lg);
}

@media (max-width: 480px) {
    .login-required-actions {
        flex-direction: column;
        align-items: center;
    }

    .login-required-actions .btn {
        width: 100%;
        max-width: 280px;
    }
}
