* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #FF6B6B;
    --secondary: #4ECDC4;
    --accent: #95E1D3;
    --dark: #2C3E50;
    --gray: #ECF0F1;
    --light: #F8F9FA;
    --text: #2C3E50;
    --green: #2ECC71;
    --yellow: #F39C12;
    --red: #E74C3C;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--light);
    color: var(--text);
    line-height: 1.6;
}

.auth-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.auth-container {
    width: 100%;
    max-width: 450px;
    padding: 20px;
}

.auth-logo {
    text-align: center;
    color: white;
    margin-bottom: 30px;
}

.auth-logo h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.tagline {
    font-size: 16px;
    font-style: italic;
    opacity: 0.9;
}

.auth-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.auth-card h2 {
    margin-bottom: 30px;
    text-align: center;
    color: var(--dark);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray);
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
}

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.btn-primary:hover {
    background: #e85a5a;
    transform: translateY(-2px);
}

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

.btn-icon {
    background: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 8px 12px;
    color: var(--dark);
    border-radius: 8px;
    transition: background 0.2s;
}

.btn-icon:hover {
    background: var(--gray);
}

.btn-add {
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
}

.btn-add:hover {
    background: #e85a5a;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.4);
}

.dropdown-menu {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    margin-top: 5px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    min-width: 180px;
    z-index: 1000;
    overflow: hidden;
}

.dropdown-item {
    width: 100%;
    padding: 12px 16px;
    border: none;
    background: white;
    color: var(--dark);
    text-align: left;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.2s;
}

.dropdown-item:hover {
    background: var(--gray);
}

.dropdown-item.danger {
    color: var(--red);
}

.dropdown-item.danger:hover {
    background: #ffe6e6;
}

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

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

.compact-period-selector {
    display: flex;
    gap: 8px;
    justify-content: center;
    background: #f5f5f5;
    padding: 4px;
    border-radius: 8px;
    max-width: 280px;
    margin: 0 auto;
}

.compact-period-selector a {
    flex: 1;
    padding: 8px 12px;
    text-align: center;
    text-decoration: none;
    color: var(--text);
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
}

.compact-period-selector a.active {
    background: white;
    color: var(--primary);
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-compact {
    display: inline-block;
    padding: 8px 16px;
    border: 1.5px solid var(--primary);
    border-radius: 8px;
    color: var(--primary);
    background: white;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-compact:hover {
    background: var(--primary);
    color: white;
}

.btn-sm {
    padding: 6px 12px;
    font-size: 13px;
}

.btn-block {
    width: 100%;
}

.auth-footer {
    text-align: center;
    margin-top: 20px;
    color: var(--text);
}

.auth-footer a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.error-message {
    background: #FEE;
    border: 1px solid var(--red);
    color: var(--red);
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.main-nav {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    transition: all 0.2s;
}

.logo:hover {
    color: #e85a5a;
    transform: scale(1.05);
}

.network-tabs {
    display: flex;
    gap: 8px;
    justify-content: center;
    background: #f5f5f5;
    padding: 4px;
    border-radius: 8px;
    max-width: 280px;
    margin: 0 auto 30px;
}

.network-tab {
    flex: 1;
    padding: 8px 16px;
    text-align: center;
    text-decoration: none;
    color: var(--text);
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s;
}

.network-tab.active {
    background: white;
    color: var(--primary);
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.network-tab:hover {
    background: white;
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 10px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 10px;
    color: var(--text);
    text-decoration: none;
    transition: all 0.3s;
}

.nav-link:hover,
.nav-link.active {
    background: var(--gray);
    color: var(--primary);
}

.logout-btn {
    padding: 10px 20px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s;
}

.logout-btn:hover {
    background: #e85a5a;
}

.main-content {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
}

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

.header-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 0;
}

.header-section h1 {
    font-size: 16px;
    font-weight: 500;
    color: #666;
    margin: 0;
    flex: 1;
}

.streak-badge {
    background: rgba(138, 79, 255, 0.08);
    color: #666;
    padding: 5px 10px;
    border-radius: 12px;
    font-weight: 500;
    font-size: 13px;
    border: 1px solid rgba(138, 79, 255, 0.15);
    white-space: nowrap;
}

.flame {
    font-size: 13px;
}

.date-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
    padding: 8px 12px;
    background: transparent;
    border-radius: 10px;
}

.date-nav-btn {
    background: transparent;
    border: none;
    padding: 4px 8px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    color: #999;
    transition: all 0.2s;
}

.date-nav-btn:hover {
    background: var(--gray);
    color: #666;
}

.date-display {
    font-weight: 500;
    font-size: 13px;
    color: #888;
}

.floating-chat-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(138, 79, 255, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-chat-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 28px rgba(138, 79, 255, 0.4);
}

.floating-chat-btn:active {
    transform: scale(0.95);
}

.floating-chat-btn {
    user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
}

.floating-chat-btn.hidden {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.8);
}

.quick-recording-indicator {
    position: fixed;
    bottom: 120px;
    right: 30px;
    background: white;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    z-index: 998;
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
    transition: all 0.3s;
}

.quick-recording-indicator.active {
    opacity: 1;
    transform: scale(1);
}

.quick-recording-indicator p {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.recording-pulse {
    width: 12px;
    height: 12px;
    background: var(--red);
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.chat-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(2px);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.chat-backdrop.open {
    opacity: 1;
    pointer-events: all;
}

.floating-chat-panel {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 100%;
    max-width: 450px;
    height: 600px;
    max-height: 80vh;
    background: white;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.floating-chat-panel.open {
    transform: translateY(0);
}

.chat-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 2px solid var(--gray);
    background: linear-gradient(135deg, rgba(138, 79, 255, 0.05) 0%, rgba(255, 107, 107, 0.05) 100%);
}

.chat-panel-header h3 {
    margin: 0;
    font-size: 20px;
    color: var(--dark);
}

.close-chat-btn {
    background: transparent;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.close-chat-btn:hover {
    background: var(--gray);
    color: var(--dark);
}

.chat-box {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.chat-message {
    margin-bottom: 12px;
    padding: 12px 16px;
    border-radius: 12px;
    max-width: 80%;
    word-wrap: break-word;
    animation: slideIn 0.3s ease;
}

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

.user-message {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    margin-left: auto;
    border-bottom-right-radius: 4px;
}

.system-message {
    background: var(--gray);
    color: var(--dark);
    border-bottom-left-radius: 4px;
}

.chat-input-container {
    display: flex;
    gap: 10px;
    padding: 15px 20px 20px;
    border-top: 2px solid var(--gray);
    background: white;
}

.chat-input-container textarea {
    flex: 1;
    resize: none;
    height: 60px;
    border: 2px solid var(--gray);
    border-radius: 12px;
    padding: 12px;
    font-family: inherit;
    font-size: 16px;
    transition: border-color 0.2s;
}

.chat-input-container textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.mic-btn {
    background: var(--secondary);
    border: none;
    padding: 10px 20px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 22px;
    transition: all 0.2s;
}

.mic-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

@media (max-width: 768px) {
    .floating-chat-panel {
        max-width: 100%;
        height: 85vh;
        max-height: 85vh;
    }
    
    .chat-panel-header {
        padding: 12px 15px;
    }
    
    .chat-panel-header h3 {
        font-size: 18px;
    }
    
    .chat-box {
        padding: 15px;
        padding-bottom: 10px;
    }
    
    .chat-message {
        font-size: 15px;
        padding: 10px 14px;
        margin-bottom: 10px;
    }
    
    .chat-input-container {
        padding: 12px 15px;
        gap: 8px;
    }
    
    .chat-input-container textarea {
        height: 44px;
        font-size: 16px;
        padding: 10px 12px;
    }
    
    .chat-input-container .btn {
        padding: 10px 16px;
        font-size: 14px;
        white-space: nowrap;
    }
    
    .mic-btn {
        padding: 10px 16px;
        font-size: 20px;
    }
    
    .floating-chat-btn {
        bottom: 20px;
        right: 20px;
        width: 60px;
        height: 60px;
        font-size: 26px;
    }
}

.kpi-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.kpi-card {
    background: white;
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.kpi-icon {
    font-size: 24px;
    margin-bottom: 5px;
}

.kpi-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 3px;
}

.kpi-label {
    color: var(--text);
    opacity: 0.7;
    font-size: 13px;
}

.kpi-card-link {
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s;
    display: block;
}

.kpi-card-link:hover {
    transform: translateY(-5px);
}

.kpi-card-link:hover .kpi-card {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.section-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.section-card h2 {
    margin-bottom: 20px;
    font-size: 22px;
}

.digest-item,
.consider-item,
.following-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid var(--gray);
}

.digest-item:last-child,
.consider-item:last-child,
.following-item:last-child {
    border-bottom: none;
}

.empty-state {
    text-align: center;
    padding: 40px;
    color: #999;
}

.people-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.person-card {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.person-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.status-indicator {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 8px;
}

.status-green {
    background: var(--green);
}

.status-yellow {
    background: var(--yellow);
}

.status-red {
    background: var(--red);
}

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

table th,
table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid var(--gray);
}

table th {
    background: var(--gray);
    font-weight: 600;
}

.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.badge-success {
    background: #dcfce7;
    color: #16a34a;
}

@media (max-width: 768px) {
    .nav-links {
        overflow-x: auto;
    }
    
    .nav-link {
        font-size: 14px;
        padding: 8px 12px;
    }
    
    .kpi-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .kpi-card {
        padding: 12px 8px;
    }
    
    .kpi-icon {
        font-size: 20px;
        margin-bottom: 3px;
    }
    
    .kpi-value {
        font-size: 20px;
    }
    
    .kpi-label {
        font-size: 11px;
    }
}

.tag-chip {
    display: inline-block;
    padding: 6px 14px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s ease;
    cursor: pointer;
}

.tag-chip:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.tag-section {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
}

.tag-section h3 {
    margin-bottom: 15px;
    color: #2c3e50;
}

.tag-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
}

.tag-item {
    background: white;
    border-radius: 10px;
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: #2c3e50;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

.tag-item:hover {
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.tag-name {
    font-weight: 500;
    font-size: 14px;
}

.tag-count {
    background: #667eea;
    color: white;
    border-radius: 12px;
    padding: 2px 8px;
    font-size: 12px;
    font-weight: 600;
}

.section-title-with-info {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    margin-bottom: 20px;
}

.section-title-with-info h2 {
    margin-bottom: 0;
}

.info-btn {
    background: transparent;
    border: none;
    color: #999;
    font-size: 14px;
    cursor: pointer;
    padding: 2px 6px;
    border-radius: 50%;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    position: relative;
    flex-shrink: 0;
}

.info-btn:hover {
    background: rgba(138, 79, 255, 0.1);
    color: var(--primary);
}

.info-tooltip {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 8px;
    background: white;
    border: 2px solid var(--gray);
    border-radius: 12px;
    padding: 12px 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    min-width: 250px;
    max-width: 320px;
    font-size: 13px;
    line-height: 1.5;
    color: #666;
    display: none;
    text-align: left;
}

.info-tooltip.active {
    display: block;
}

.info-tooltip::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid var(--gray);
}

.kpi-card-title {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.info-wrapper {
    position: relative;
    display: inline-flex;
}

@media (max-width: 768px) {
    .info-tooltip {
        max-width: 280px;
        min-width: 200px;
    }
}

/* Onboarding Modal Styles */
.onboarding-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: 20px;
    backdrop-filter: blur(4px);
}

.onboarding-modal {
    background: white;
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    padding: 40px;
    position: relative;
    animation: slideUp 0.3s ease-out;
}

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

.onboarding-content {
    min-height: 400px;
    margin-bottom: 30px;
}

.onboarding-step {
    display: none;
    text-align: center;
}

.onboarding-step h2 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 28px;
}

.onboarding-step p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 16px;
}

.onboarding-step ul {
    list-style: none;
    padding: 0;
}

.onboarding-step ul li {
    padding: 8px 0;
    color: #555;
}

.onboarding-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.onboarding-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    transition: all 0.3s;
}

.onboarding-dot.active {
    background: var(--primary);
    width: 30px;
    border-radius: 5px;
}

.onboarding-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #764ba2 100%);
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

/* Clickable person names in Consider section */
.consider-item a {
    color: inherit;
    text-decoration: none;
    transition: all 0.2s ease;
}

.consider-item a:hover {
    text-decoration: underline;
    color: var(--primary);
}

/* Clickable person names in circle tables */
table tbody td a {
    color: inherit;
    text-decoration: none;
    transition: all 0.2s ease;
    display: block;
    padding: 8px 0;
}

table tbody td a:hover {
    color: var(--primary);
    font-weight: 600;
}

@media (max-width: 768px) {
    .onboarding-modal {
        padding: 30px 20px;
        max-height: 95vh;
    }
    
    .onboarding-step h2 {
        font-size: 24px;
    }
    
    .onboarding-step p {
        font-size: 14px;
    }
    
    .onboarding-content {
        min-height: 350px;
    }
    
    .btn-outline, .btn-primary {
        padding: 10px 20px;
        font-size: 14px;
    }
}
