/**
 * Kullanıcı Paneli Stilleri
 * Dashboard, Eğitimlerim, Profil sayfaları
 *
 * @package AycaHanim
 */

/* ============== STAT CARDS ============== */
.rui-stat-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.rui-stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.rui-stat-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.rui-stat-card-icon--primary {
    background: rgba(79, 92, 204, 0.1);
    color: var(--main-theme-color);
}

.rui-stat-card-icon--success {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.rui-stat-card-icon--info {
    background: rgba(14, 165, 233, 0.1);
    color: #0ea5e9;
}

.rui-stat-card-icon--warning {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.rui-stat-card-content {
    display: flex;
    flex-direction: column;
}

.rui-stat-card-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-color);
    line-height: 1;
}

.rui-stat-card-label {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-top: 5px;
}

/* ============== CONTINUE CARDS ============== */
.rui-continue-card {
    background: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.rui-continue-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.rui-continue-card-image {
    height: 140px;
    background: var(--gray-100);
    overflow: hidden;
}

.rui-continue-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rui-continue-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--main-theme-color-light) 0%, var(--main-theme-color) 100%);
    color: white;
    font-size: 2.5rem;
}

.rui-continue-card-content {
    padding: 20px;
}

.rui-continue-card-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
    color: var(--text-color);
}

.rui-continue-card-progress {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.rui-continue-card-progress .progress {
    flex: 1;
    height: 8px;
    border-radius: 4px;
    background: var(--gray-200);
}

.rui-continue-card-progress .progress-bar {
    background: var(--main-theme-color);
    border-radius: 4px;
}

.rui-continue-card-percent {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--main-theme-color);
    min-width: 35px;
}

.rui-continue-card-lesson {
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-bottom: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ============== APPOINTMENTS LIST ============== */
.rui-appointments-list {
    background: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.rui-appointment-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border-bottom: 1px solid var(--gray-100);
}

.rui-appointment-item:last-child {
    border-bottom: none;
}

.rui-appointment-date {
    width: 60px;
    height: 60px;
    background: var(--main-theme-color-light);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.rui-appointment-day {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--main-theme-color);
    line-height: 1;
}

.rui-appointment-month {
    font-size: 0.7rem;
    color: var(--main-theme-color);
    text-transform: uppercase;
    font-weight: 600;
}

.rui-appointment-info {
    flex: 1;
}

.rui-appointment-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-color);
}

.rui-appointment-time {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin: 0;
}

/* ============== ACTIVITIES LIST ============== */
.rui-activities-list {
    background: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.rui-activity-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    border-bottom: 1px solid var(--gray-100);
}

.rui-activity-item:last-child {
    border-bottom: none;
}

.rui-activity-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.rui-activity-icon--primary {
    background: rgba(79, 92, 204, 0.1);
    color: var(--main-theme-color);
}

.rui-activity-icon--success {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

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

.rui-activity-title {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 3px;
    color: var(--text-color);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rui-activity-subtitle {
    font-size: 0.8rem;
    color: var(--gray-500);
    margin: 0;
}

.rui-activity-time {
    font-size: 0.75rem;
    color: var(--gray-400);
    white-space: nowrap;
}

/* ============== USER COURSES GRID ============== */
.rui-user-courses {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.rui-user-course-card {
    background: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
}

.rui-user-course-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.rui-user-course-card.expired {
    opacity: 0.8;
}

.rui-user-course-card.completed {
    border: 2px solid #22c55e;
}

.rui-user-course-image {
    height: 160px;
    background: var(--gray-100);
    overflow: hidden;
    position: relative;
}

.rui-user-course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rui-user-course-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--main-theme-color-light) 0%, var(--main-theme-color) 100%);
    color: white;
    font-size: 3rem;
}

.rui-user-course-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.rui-user-course-badge--expired {
    background: var(--danger);
    color: white;
}

.rui-user-course-badge--completed {
    background: #22c55e;
    color: white;
}

.rui-user-course-content {
    padding: 20px;
    flex: 1;
}

.rui-user-course-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
}

.rui-user-course-title a {
    color: var(--text-color);
    text-decoration: none;
}

.rui-user-course-title a:hover {
    color: var(--main-theme-color);
}

.rui-user-course-category {
    display: inline-flex;
    align-items: center;
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-bottom: 15px;
}

.rui-user-course-progress {
    margin-bottom: 15px;
}

.rui-user-course-progress-label {
    font-size: 0.8rem;
    color: var(--gray-600);
}

.rui-user-course-progress-percent {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--main-theme-color);
}

.rui-user-course-progress .progress {
    height: 8px;
    border-radius: 4px;
    background: var(--gray-200);
}

.rui-user-course-progress .progress-bar {
    background: var(--main-theme-color);
    border-radius: 4px;
}

.rui-user-course-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.rui-user-course-meta-item {
    font-size: 0.8rem;
    color: var(--gray-500);
    display: flex;
    align-items: center;
    gap: 6px;
}

.rui-user-course-actions {
    padding: 15px 20px;
    border-top: 1px solid var(--gray-100);
}

/* ============== PROFILE CARD ============== */
.rui-profile-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.rui-profile-header {
    background: linear-gradient(135deg, var(--main-theme-color) 0%, #6366f1 100%);
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.rui-profile-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.rui-profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rui-profile-avatar-text {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
}

.rui-profile-info {
    color: white;
}

.rui-profile-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #fff !important;
}

.rui-profile-email {
    opacity: 0.9;
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.rui-profile-member-since {
    opacity: 0.7;
    font-size: 0.85rem;
}

/* Doğrulandı / Doğrulanmadı badge'leri */
.rui-verified-badge {
    display: inline-flex;
    align-items: center;
    font-size: 0.7rem;
    font-weight: 600;
    color: #34d399;
    background: rgba(52, 211, 153, 0.15);
    padding: 2px 8px;
    border-radius: 20px;
    margin-left: 6px;
    vertical-align: middle;
}
.rui-unverified-badge {
    display: inline-flex;
    align-items: center;
    font-size: 0.7rem;
    font-weight: 600;
    color: #fbbf24;
    background: rgba(251, 191, 36, 0.15);
    padding: 2px 8px;
    border-radius: 20px;
    margin-left: 6px;
    vertical-align: middle;
}
.rui-verified-badge-sm {
    color: #34d399;
    font-size: 0.75rem;
    margin-left: 4px;
}

/* Doğrulama Sonuç Sayfası */
.rui-verify-result-card {
    text-align: center;
    padding: 50px 30px;
    background: var(--card-bg, #fff);
    border-radius: 20px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}
.rui-verify-result-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.5rem;
}
.rui-verify-result-icon--success {
    background: rgba(52, 211, 153, 0.12);
    color: #027654;
}
.rui-verify-result-icon--error {
    background: rgba(239, 16, 16, 0.08);
    color: var(--danger, #ef1010);
}
.rui-verify-result-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--primary-color-900, #181c3d);
}
.rui-verify-result-message {
    color: var(--text-color-secondary, #757474);
    margin-bottom: 24px;
}
.theme-dark .rui-verify-result-card {
    background: var(--card-bg, #1c1c1f);
}
.theme-dark .rui-verify-result-title {
    color: var(--text-color, #e4e4e7);
}

.rui-profile-form {
    padding: 30px;
}

.rui-profile-section {
    margin-bottom: 36px;
    padding-bottom: 36px;
    border-bottom: 1px solid var(--gray-200);
}

.rui-form-section {
    margin-bottom: 36px;
    padding-bottom: 36px;
    border-bottom: 1px solid var(--gray-200);
}

.rui-profile-section:last-of-type {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.rui-profile-section-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 20px;
}

.rui-profile-actions {
    padding-top: 20px;
    text-align: center;
}

.rui-profile-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.rui-profile-link {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    text-decoration: none;
    color: var(--text-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.rui-profile-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    color: var(--main-theme-color);
}

.rui-profile-link i {
    font-size: 1.5rem;
    color: var(--main-theme-color);
}

.rui-profile-link span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* ============== SECTION HELPERS ============== */
.rui-section--compact {
    padding: 30px 0;
}

.rui-section--gray {
    background: var(--gray-50);
}

.rui-link {
    color: var(--main-theme-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.rui-link:hover {
    color: var(--main-theme-color-hover);
}

/* ============== RESPONSIVE ============== */
@media (max-width: 767.98px) {
    .rui-stat-card {
        padding: 15px;
    }

    .rui-stat-card-icon {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }

    .rui-stat-card-number {
        font-size: 1.5rem;
    }

    .rui-profile-header {
        flex-direction: column;
        text-align: center;
    }

    .rui-user-courses {
        grid-template-columns: 1fr;
    }

    .rui-appointment-item {
        flex-wrap: wrap;
    }

    .rui-appointment-status {
        width: 100%;
        margin-top: 10px;
    }
}

/* ============== DASHBOARD CANLI DERS WIDGET ============== */
.rui-live-dashboard-card {
    background: var(--card-bg, #fff);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 2px solid transparent;
    animation: liveDashboardGlow 3s ease-in-out infinite;
}

@keyframes liveDashboardGlow {
    0%, 100% { border-color: rgba(79, 92, 204, 0.15); }
    50% { border-color: rgba(79, 92, 204, 0.35); }
}

.rui-live-dashboard-header {
    padding: 20px 24px;
    background: linear-gradient(135deg, rgba(79, 92, 204, 0.08) 0%, rgba(79, 92, 204, 0.02) 100%);
    border-bottom: 1px solid var(--gray-200, #e5e5e5);
}

.rui-live-dashboard-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--main-theme-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.rui-live-dashboard-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    color: var(--text-color, #1a1a2e);
}

.rui-live-dashboard-subtitle {
    font-size: 0.85rem;
    color: var(--text-muted, #6b7280);
}

.rui-live-dashboard-body {
    padding: 8px 24px 16px;
}

.rui-live-dashboard-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-100, #f3f3f3);
}

.rui-live-dashboard-item:last-child {
    border-bottom: none;
}

.rui-live-dashboard-item--live {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.04) 0%, rgba(239, 68, 68, 0.08) 100%);
    margin: 0 -24px;
    padding: 16px 24px;
    border-radius: 12px;
    border-bottom: none;
}

.rui-live-dashboard-item-left {
    flex: 1;
    min-width: 0;
}

.rui-live-dashboard-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 6px;
}

.rui-live-dashboard-badge--live {
    background: #ef4444;
    color: #fff;
}

.rui-live-dashboard-badge--today {
    background: rgba(79, 92, 204, 0.12);
    color: var(--main-theme-color);
}

.rui-live-dashboard-badge--scheduled {
    background: var(--gray-100, #f3f3f3);
    color: var(--text-muted, #6b7280);
}

.rui-live-dot-sm {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fff;
    animation: livePulseSm 1.2s ease-in-out infinite;
}

@keyframes livePulseSm {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.rui-live-dashboard-item-title {
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0 0 4px 0;
    color: var(--text-color, #1a1a2e);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rui-live-dashboard-item-meta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    font-size: 0.78rem;
    color: var(--text-muted, #6b7280);
}

.rui-live-countdown {
    color: var(--main-theme-color);
    font-weight: 600;
}

.rui-live-dashboard-item-right {
    flex-shrink: 0;
}

@media (max-width: 575.98px) {
    .rui-live-dashboard-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .rui-live-dashboard-item-right {
        width: 100%;
    }
    .rui-live-dashboard-item-right .rui-btn {
        width: 100%;
        text-align: center;
    }
    .rui-live-dashboard-body {
        padding: 8px 16px 16px;
    }
    .rui-live-dashboard-header {
        padding: 16px;
    }
    .rui-live-dashboard-item--live {
        margin: 0 -16px;
        padding: 16px;
    }
}

/* Dark mode */
.theme-dark .rui-live-dashboard-card {
    background: var(--dark-card, #1e1e2e);
    border-color: rgba(79, 92, 204, 0.2);
}
.theme-dark .rui-live-dashboard-header {
    border-color: var(--dark-border, #2d2d3d);
}
.theme-dark .rui-live-dashboard-item {
    border-color: var(--dark-border, #2d2d3d);
}
.theme-dark .rui-live-dashboard-item-title {
    color: var(--text-color, #e4e4e7);
}
.theme-dark .rui-live-dashboard-badge--scheduled {
    background: rgba(255,255,255,0.08);
    color: var(--text-muted);
}
.theme-dark .rui-live-dashboard-badge--today {
    background: rgba(79, 92, 204, 0.2);
}

/* ============== DASHBOARD EMAIL VERIFY ALERT ============== */
.rui-dash-verify-alert {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: rgba(79, 92, 204, 0.06);
    border: 1.5px solid rgba(79, 92, 204, 0.18);
    border-radius: 14px;
    padding: 16px 20px;
    margin-bottom: 16px;
}
.rui-dash-verify-alert-left {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    min-width: 0;
}
.rui-dash-verify-alert-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--main-theme-color, #4f5ccc);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}
.rui-dash-verify-alert strong {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary-color-900, #181c3d);
    margin-bottom: 2px;
}
.rui-dash-verify-alert p {
    font-size: 0.8125rem;
    color: var(--text-color-secondary, #757474);
    margin: 0;
    line-height: 1.4;
}
@media (max-width: 576px) {
    .rui-dash-verify-alert {
        flex-direction: column;
        text-align: center;
    }
    .rui-dash-verify-alert-left {
        flex-direction: column;
    }
}
.theme-dark .rui-dash-verify-alert {
    background: rgba(79, 92, 204, 0.1);
    border-color: rgba(79, 92, 204, 0.25);
}
.theme-dark .rui-dash-verify-alert strong {
    color: var(--text-color, #e4e4e7);
}
.rui-dash-verify-sent {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8125rem;
    color: #027654;
    font-weight: 600;
    padding: 8px 18px;
    background: rgba(2, 118, 84, 0.08);
    border-radius: 40px;
    white-space: nowrap;
    flex-shrink: 0;
}

/* ============== DASHBOARD PROFILE CARD ============== */
.rui-dash-profile-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--card-bg, #fff);
    border-radius: 16px;
    padding: 20px 24px;
    gap: 16px;
    border: 1px solid var(--border-color, rgba(0,0,0,0.06));
}
.rui-dash-profile-left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    min-width: 0;
}
.rui-dash-profile-avatar {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--main-theme-color, #4f5ccc), #7c6dd8);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}
.rui-dash-profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.rui-dash-profile-avatar span {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
}
.rui-dash-profile-info {
    min-width: 0;
}
.rui-dash-profile-name {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 4px;
    color: var(--primary-color-900, #181c3d);
}
.rui-dash-profile-details {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 16px;
}
.rui-dash-profile-detail {
    font-size: 0.8125rem;
    color: var(--gray-600, #6b7280);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}
.rui-dash-profile-detail i {
    color: var(--main-theme-color, #4f5ccc);
    font-size: 0.75rem;
    width: 14px;
    text-align: center;
}
.rui-dash-profile-edit-btn {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    border-radius: 40px;
    border: 1.5px solid var(--main-theme-color, #4f5ccc);
    color: var(--main-theme-color, #4f5ccc);
    font-size: 0.8125rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
    white-space: nowrap;
    flex-shrink: 0;
}
.rui-dash-profile-edit-btn:hover {
    background: var(--main-theme-color, #4f5ccc);
    color: #fff;
}
@media (max-width: 768px) {
    .rui-dash-profile-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px;
    }
    .rui-dash-profile-edit-btn {
        align-self: stretch;
        justify-content: center;
    }
}

/* ============== GETTING STARTED (EMPTY STATE) ============== */
.rui-getting-started {
    background: var(--card-bg, #fff);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid var(--border-color, rgba(0,0,0,0.06));
}
.rui-getting-started-header {
    text-align: center;
    margin-bottom: 32px;
}
.rui-getting-started-header h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--body-color, #1a1a2e);
}
.rui-getting-started-header p {
    font-size: 0.9375rem;
    color: var(--gray-600, #6b7280);
    margin: 0;
}
.rui-getting-started-steps {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}
.rui-getting-started-step {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px 20px;
    border-radius: 16px;
    border: 1.5px solid var(--border-color, rgba(0,0,0,0.08));
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    background: var(--card-bg, #fff);
}
.rui-getting-started-step:hover {
    border-color: var(--main-theme-color, #4f5ccc);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(79, 92, 204, 0.12);
    color: inherit;
}
.rui-getting-started-step-num {
    position: absolute;
    top: 12px;
    left: 14px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--main-theme-color-light, rgba(79,92,204,0.1));
    color: var(--main-theme-color, #4f5ccc);
    font-size: 0.7rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}
.rui-getting-started-step-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--main-theme-color, #4f5ccc), #7c6dd8);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: #fff;
    font-size: 1.35rem;
}
.rui-getting-started-step h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
}
.rui-getting-started-step p {
    font-size: 0.8125rem;
    color: var(--gray-600, #6b7280);
    margin-bottom: 12px;
    line-height: 1.5;
}
.rui-getting-started-step-link {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--main-theme-color, #4f5ccc);
    margin-top: auto;
}
.rui-getting-started-step:hover .rui-getting-started-step-link {
    text-decoration: underline;
}

/* Dark mode */
.theme-dark .rui-dash-profile-card {
    background: var(--card-bg, #1c1c1f);
    border-color: var(--dark-border, #2d2d3d);
}
.theme-dark .rui-dash-profile-detail {
    color: var(--text-muted, #a1a1aa);
}
.theme-dark .rui-dash-profile-edit-btn {
    border-color: rgba(79, 92, 204, 0.5);
}
.theme-dark .rui-dash-profile-edit-btn:hover {
    background: var(--main-theme-color, #4f5ccc);
    border-color: var(--main-theme-color, #4f5ccc);
}
.theme-dark .rui-getting-started {
    background: var(--card-bg, #1c1c1f);
    border-color: var(--dark-border, #2d2d3d);
}
.theme-dark .rui-getting-started-header h3 {
    color: var(--text-color, #e4e4e7);
}
.theme-dark .rui-getting-started-step {
    background: var(--card-bg, #1c1c1f);
    border-color: var(--dark-border, #2d2d3d);
}
.theme-dark .rui-getting-started-step:hover {
    border-color: var(--main-theme-color, #4f5ccc);
    box-shadow: 0 8px 24px rgba(79, 92, 204, 0.2);
}
.theme-dark .rui-getting-started-step h5 {
    color: var(--text-color, #e4e4e7);
}
.theme-dark .rui-getting-started-step p {
    color: var(--text-muted, #a1a1aa);
}
