/**
 * 财务统计系统 - 全新UI设计
 * 现代化、直观的代理层级展示
 */

/* ========== CSS变量定义 ========== */
:root {
    /* 主色调 */
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #3b82f6;
    
    /* 功能色 */
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --info: #06b6d4;
    
    /* 中性色 */
    --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;
    
    /* 代理层级颜色 */
    --level-501: #7c3aed;  /* 总监 - 紫色 */
    --level-401: #2563eb;  /* 大股东 - 蓝色 */
    --level-301: #0891b2;  /* 股东 - 青色 */
    --level-201: #059669;  /* 总代理 - 绿色 */
    --level-101: #d97706;  /* 代理 - 橙色 */
    
    /* 阴影 */
    --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 -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    
    /* 圆角 */
    --radius-sm: 0.375rem;
    --radius: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
}

/* ========== 基础样式重置 ========== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray-800);
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ec 100%);
    min-height: 100vh;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: var(--primary-dark);
}

/* ========== 登录页面 ========== */
.login-page {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login-box {
    background: white;
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 420px;
}

.login-title {
    text-align: center;
    color: var(--gray-800);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.login-subtitle {
    text-align: center;
    color: var(--gray-500);
    margin-bottom: 32px;
}

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

.login-box label {
    display: block;
    color: var(--gray-700);
    font-weight: 500;
    margin-bottom: 8px;
}

.login-box .form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 15px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.login-box .form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.captcha-group .captcha-input {
    display: flex;
    gap: 12px;
}

.captcha-group .form-control {
    flex: 1;
}

.captcha-img {
    height: 48px;
    border-radius: var(--radius);
    cursor: pointer;
    transition: transform 0.2s;
}

.captcha-img:hover {
    transform: scale(1.05);
}

.login-box .btn-primary {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: var(--radius);
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

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

/* ========== 顶部导航 ========== */
.header-bar {
    background: linear-gradient(135deg, var(--gray-800) 0%, var(--gray-900) 100%);
    padding: 0 24px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-md);
}

.header-title {
    color: white;
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-title::before {
    content: '📊';
    font-size: 24px;
}

.btn-logout {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: var(--radius);
    font-weight: 500;
    transition: all 0.2s;
}

.btn-logout:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* ========== 主容器 ========== */
.main-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 24px;
}

/* ========== 统计卡片区域 ========== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.stat-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary);
    transition: transform 0.2s, box-shadow 0.2s;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.stat-card.income {
    border-left-color: var(--success);
}

.stat-card.expense {
    border-left-color: var(--danger);
}

.stat-card.pending {
    border-left-color: var(--warning);
}

.stat-card .stat-label {
    color: var(--gray-500);
    font-size: 13px;
    margin-bottom: 8px;
}

.stat-card .stat-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-800);
}

.stat-card .stat-count {
    font-size: 12px;
    color: var(--gray-400);
    margin-top: 4px;
}

/* ========== 层级导航面包屑 ========== */
.breadcrumb-nav {
    background: white;
    border-radius: var(--radius-lg);
    padding: 16px 20px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.breadcrumb-label {
    color: var(--gray-500);
    font-size: 13px;
    margin-right: 8px;
}

.breadcrumb-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb-item a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--gray-100);
    border-radius: var(--radius);
    color: var(--gray-700);
    font-weight: 500;
    transition: all 0.2s;
}

.breadcrumb-item a:hover {
    background: var(--primary);
    color: white;
}

.breadcrumb-item.active a {
    background: var(--primary);
    color: white;
}

.breadcrumb-separator {
    color: var(--gray-300);
    font-size: 18px;
}

.level-badge {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.level-badge.level-501 { background: var(--level-501); }
.level-badge.level-401 { background: var(--level-401); }
.level-badge.level-301 { background: var(--level-301); }
.level-badge.level-201 { background: var(--level-201); }
.level-badge.level-101 { background: var(--level-101); }

/* ========== 当前层级信息卡片 ========== */
.current-level-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 20px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.current-level-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.level-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.level-details h2 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 4px;
}

.level-details .level-type {
    opacity: 0.9;
    font-size: 14px;
}

.level-stats {
    display: flex;
    gap: 32px;
}

.level-stat {
    text-align: center;
}

.level-stat .value {
    font-size: 24px;
    font-weight: 700;
}

.level-stat .label {
    font-size: 12px;
    opacity: 0.9;
}

/* ========== 工具栏 ========== */
.toolbar {
    background: white;
    border-radius: var(--radius-lg);
    padding: 16px 20px;
    margin-bottom: 16px;
    box-shadow: var(--shadow);
}

.toolbar-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.toolbar-row + .toolbar-row {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--gray-200);
}

.toolbar-group {
    display: flex;
    gap: 8px;
    align-items: center;
}

.toolbar-label {
    color: var(--gray-500);
    font-size: 13px;
    white-space: nowrap;
}

.toolbar-divider {
    width: 1px;
    height: 24px;
    background: var(--gray-200);
    margin: 0 4px;
}

/* 筛选按钮组 */
.filter-group {
    display: flex;
    background: var(--gray-100);
    border-radius: var(--radius);
    padding: 4px;
}

.filter-btn {
    padding: 8px 16px;
    border: none;
    background: transparent;
    color: var(--gray-600);
    font-size: 13px;
    font-weight: 500;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.2s;
}

.filter-btn:hover {
    color: var(--gray-800);
}

.filter-btn.active {
    background: white;
    color: var(--primary);
    box-shadow: var(--shadow-sm);
}

/* 日期选择 */
.date-picker-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.date-picker {
    padding: 8px 12px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    font-size: 13px;
    color: var(--gray-700);
}

.date-picker:focus {
    outline: none;
    border-color: var(--primary);
}

.btn-search {
    padding: 8px 20px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: var(--radius);
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-search:hover {
    background: var(--primary-dark);
}

.search-info {
    color: var(--gray-500);
    font-size: 12px;
    margin-top: 12px;
}

/* ========== 平台选择区域 ========== */
.platform-label {
    color: var(--gray-500);
    font-size: 13px;
    white-space: nowrap;
}

.platform-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.platform-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--primary);
    color: white;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

.platform-tag.offline {
    background: var(--gray-400);
}

.platform-tag.online::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.btn-select-platform {
    padding: 6px 12px;
    background: var(--gray-100);
    color: var(--gray-700);
    border: 1px dashed var(--gray-300);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    font-size: 13px;
}

.btn-select-platform:hover {
    background: var(--gray-200);
    border-color: var(--gray-400);
}

/* ========== 数据表格 ========== */
.data-table-wrapper {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
}

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

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

.data-table th {
    padding: 14px 16px;
    text-align: left;
    font-weight: 600;
    color: var(--gray-600);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid var(--gray-200);
    white-space: nowrap;
}

.data-table th.text-right,
.data-table td.text-right {
    text-align: right;
}

.data-table th.text-center,
.data-table td.text-center {
    text-align: center;
}

.data-table tbody tr {
    transition: background 0.2s;
}

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

.data-table td {
    padding: 16px;
    border-bottom: 1px solid var(--gray-100);
    vertical-align: middle;
}

/* 代理名称单元格 */
.agent-cell {
    display: flex;
    align-items: center;
    gap: 12px;
}

.agent-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--level-501) 0%, var(--primary) 100%);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 14px;
}

.agent-avatar.level-401 { background: linear-gradient(135deg, var(--level-401) 0%, #1e40af 100%); }
.agent-avatar.level-301 { background: linear-gradient(135deg, var(--level-301) 0%, #0e7490 100%); }
.agent-avatar.level-201 { background: linear-gradient(135deg, var(--level-201) 0%, #047857 100%); }
.agent-avatar.level-101 { background: linear-gradient(135deg, var(--level-101) 0%, #b45309 100%); }

.agent-info {
    display: flex;
    flex-direction: column;
}

.agent-name {
    font-weight: 600;
    color: var(--gray-800);
}

.agent-id {
    font-size: 12px;
    color: var(--gray-500);
}

/* 数值单元格 */
.value-cell {
    font-family: 'SF Mono', 'Roboto Mono', monospace;
    font-size: 13px;
}

.value-cell.positive {
    color: var(--success);
}

.value-cell.negative {
    color: var(--danger);
}

.value-cell.large {
    font-weight: 600;
}

/* 操作按钮 */
.action-buttons {
    display: flex;
    gap: 8px;
}

.btn-action {
    padding: 6px 12px;
    border-radius: var(--radius);
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}

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

.btn-drill:hover {
    background: var(--primary-dark);
}

.btn-detail {
    background: var(--gray-100);
    color: var(--gray-700);
}

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

/* 总计行 */
.data-table .total-row {
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-50) 100%);
    font-weight: 600;
}

.data-table .total-row td {
    border-bottom: none;
    border-top: 2px solid var(--primary);
}

/* 空状态 */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--gray-500);
}

.empty-state-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.empty-state-text {
    font-size: 16px;
}

/* ========== 顶部栏 - 同步和平台整合在同一行 ========== */
.top-bar {
    background: white !important;
    border-radius: var(--radius-lg) !important;
    padding: 14px 20px !important;
    margin-bottom: 16px !important;
    box-shadow: var(--shadow) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 20px !important;
}

.top-bar-left {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    flex-shrink: 0 !important;
}

.top-bar-right {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    flex: 1 !important;
    justify-content: flex-end !important;
}

.sync-info {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.sync-icon {
    font-size: 16px;
}

.sync-label {
    font-size: 13px;
    color: var(--gray-500);
}

.sync-time {
    font-weight: 600;
    color: var(--gray-800);
    font-size: 13px;
}

.btn-sync {
    padding: 8px 16px;
    background: var(--success);
    color: white;
    border: none;
    border-radius: var(--radius);
    font-weight: 500;
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
    white-space: nowrap;
}

.btn-sync:hover {
    background: #059669;
    transform: translateY(-1px);
}

.btn-sync:disabled {
    background: var(--gray-300);
    cursor: not-allowed;
    transform: none;
}

/* ========== 模态框 ========== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.show {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: var(--radius-xl);
    width: 100%;
    max-width: 700px;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.modal-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-800);
}

.modal-close {
    width: 36px;
    height: 36px;
    border: none;
    background: var(--gray-100);
    border-radius: var(--radius);
    cursor: pointer;
    font-size: 20px;
    color: var(--gray-500);
    transition: all 0.2s;
}

.modal-close:hover {
    background: var(--gray-200);
    color: var(--gray-800);
}

.modal-body {
    padding: 24px;
    max-height: 60vh;
    overflow-y: auto;
}

.modal-footer {
    padding: 16px 24px;
    border-top: 1px solid var(--gray-200);
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

/* 平台选择网格 */
.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
}

.platform-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.2s;
}

.platform-item:hover {
    border-color: var(--primary);
    background: var(--gray-50);
}

.platform-item.selected {
    border-color: var(--primary);
    background: rgba(37, 99, 235, 0.05);
}

.platform-item input {
    display: none;
}

.platform-checkbox {
    width: 20px;
    height: 20px;
    border: 2px solid var(--gray-300);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.platform-item.selected .platform-checkbox {
    background: var(--primary);
    border-color: var(--primary);
}

.platform-item.selected .platform-checkbox::after {
    content: '✓';
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.platform-name {
    flex: 1;
    font-weight: 500;
    color: var(--gray-700);
}

.platform-status {
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 10px;
}

.platform-status.online {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
}

.platform-status.offline {
    background: var(--gray-100);
    color: var(--gray-500);
}

/* ========== 按钮通用样式 ========== */
.btn {
    padding: 10px 20px;
    border-radius: var(--radius);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-secondary {
    background: var(--gray-100);
    color: var(--gray-700);
}

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

/* ========== 报表详情页面 ========== */
.detail-page {
    padding: 24px;
}

.detail-header {
    background: white;
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: var(--shadow);
}

.detail-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 8px;
}

.detail-subtitle {
    color: var(--gray-500);
}

.platform-detail-card {
    background: white;
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.platform-detail-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.platform-detail-name {
    font-size: 18px;
    font-weight: 600;
}

.platform-detail-stats {
    display: flex;
    gap: 24px;
}

.platform-stat-item {
    text-align: center;
}

.platform-stat-value {
    font-size: 18px;
    font-weight: 700;
}

.platform-stat-label {
    font-size: 11px;
    opacity: 0.9;
}

/* ========== 响应式设计 ========== */
@media (max-width: 1400px) {
    .toolbar-row {
        flex-wrap: wrap;
    }
    
    .toolbar-divider {
        display: none;
    }
}

@media (max-width: 1200px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .top-bar {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    
    .top-bar-left,
    .top-bar-right {
        justify-content: space-between;
    }
}

@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .current-level-card {
        flex-direction: column;
        text-align: center;
    }
    
    .current-level-info {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .main-container {
        padding: 16px;
    }
    
    .header-bar {
        padding: 0 16px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .toolbar-row {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    
    .toolbar-group {
        flex-wrap: wrap;
    }
    
    .filter-group {
        flex-wrap: wrap;
        justify-content: flex-start;
    }
    
    .date-picker-group {
        flex-wrap: wrap;
        justify-content: flex-start;
    }
    
    .data-table-wrapper {
        overflow-x: auto;
    }
    
    .data-table {
        min-width: 900px;
    }
    
    .level-stats {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .top-bar-left,
    .top-bar-right {
        flex-wrap: wrap;
        gap: 10px;
    }
}

/* ========== 工具类 ========== */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-success { color: var(--success); }
.text-danger { color: var(--danger); }
.text-warning { color: var(--warning); }
.text-muted { color: var(--gray-500); }
.font-mono { font-family: 'SF Mono', 'Roboto Mono', monospace; }
.font-bold { font-weight: 600; }

/* ========== 警告提示 ========== */
.alert {
    padding: 16px 20px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.alert-danger {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: var(--danger);
}

.alert-warning {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
    color: var(--warning);
}

.alert-info {
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.2);
    color: var(--info);
}
