/* ============================================
   ImportPanel v5.0 - Backups Page (Enhanced v7)
   Card-based layout with timeline, storage usage,
   auto-backup settings, better action buttons
   ============================================ */

/* ---- Toolbar ---- */
.backups-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: nowrap;
    margin-bottom: 20px;
    padding: 12px 16px;
    background: var(--color-surface);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-lg);
}

.backups-toolbar .search-input {
    max-width: 320px;
    flex: 1;
    min-width: 200px;
}

.backups-toolbar .search-input input {
    background: var(--color-surface-alt);
    border-color: transparent;
    height: 38px;
    font-size: 13px;
    border-radius: var(--radius-md);
}

.backups-toolbar .search-input input:focus-visible {
    background: var(--color-surface);
    border-color: var(--color-primary);
}

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

.backups-type-select {
    height: 38px;
    padding: 0 10px;
    font-size: 13px;
    border: 1px solid transparent;
    border-radius: var(--radius-md);
    background: var(--color-surface-alt);
    color: var(--color-text-secondary);
    cursor: pointer;
    transition: all var(--transition-fast);
    min-width: 140px;
}

.backups-type-select:hover {
    border-color: var(--color-border);
}

.backups-type-select:focus-visible {
    background: var(--color-surface);
    border-color: var(--color-primary);
    outline: none;
}

.backups-date-input {
    height: 38px;
    padding: 0 10px;
    font-size: 13px;
    border: 1px solid transparent;
    border-radius: var(--radius-md);
    background: var(--color-surface-alt);
    color: var(--color-text-secondary);
    cursor: pointer;
    transition: all var(--transition-fast);
    min-width: 140px;
}

.backups-date-input:hover {
    border-color: var(--color-border);
}

.backups-date-input:focus-visible {
    background: var(--color-surface);
    border-color: var(--color-primary);
    outline: none;
}

/* ---- Auto-backup Settings Card ---- */
.backups-auto-backup-card {
    background: linear-gradient(135deg, var(--color-primary-light) 0%, rgba(var(--color-primary-rgb, 59, 130, 246), 0.05) 100%);
    border: 1px solid var(--color-primary);
    border-radius: 16px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.15);
    transition: all var(--transition-base);
}

.backups-auto-backup-card:hover {
    box-shadow: 0 6px 24px rgba(59, 130, 246, 0.2);
}

.backups-auto-backup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
}

.backups-auto-backup-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text);
}

.backups-auto-backup-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--color-primary);
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.backups-auto-backup-icon svg {
    width: 20px;
    height: 20px;
}

/* Toggle switch */
.backups-auto-backup-toggle {
    position: relative;
    display: inline-block;
    width: 52px;
    height: 28px;
    cursor: pointer;
    flex-shrink: 0;
}

.backups-auto-backup-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.backups-toggle-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-border);
    border-radius: 28px;
    transition: background 0.25s ease;
}

.backups-toggle-slider::before {
    content: '';
    position: absolute;
    height: 22px;
    width: 22px;
    left: 3px;
    bottom: 3px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.25s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.backups-auto-backup-toggle input:checked + .backups-toggle-slider {
    background: var(--color-primary);
}

.backups-auto-backup-toggle input:checked + .backups-toggle-slider::before {
    transform: translateX(24px);
}

.backups-auto-backup-toggle input:focus-visible + .backups-toggle-slider {
    box-shadow: 0 0 0 3px var(--color-primary-light);
}

/* Auto-backup body (collapsible) */
.backups-auto-backup-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 24px;
    border-top: 1px solid transparent;
}

.backups-auto-backup-body.active {
    max-height: 200px;
    padding: 20px 24px;
    border-top-color: rgba(var(--color-primary-rgb, 59, 130, 246), 0.2);
}

.backups-auto-backup-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.backups-auto-backup-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text);
    white-space: nowrap;
}

.backups-auto-backup-select {
    flex: 1;
    height: 38px;
    padding: 0 12px;
    font-size: 13px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: var(--color-surface);
    color: var(--color-text);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.backups-auto-backup-select:hover {
    border-color: var(--color-primary);
}

.backups-auto-backup-select:focus-visible {
    border-color: var(--color-primary);
    outline: none;
    box-shadow: 0 0 0 3px var(--color-primary-light);
}

.backups-auto-backup-info {
    display: flex;
    gap: 24px;
    margin-top: 12px;
}

.backups-auto-backup-info-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.backups-auto-backup-info-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.backups-auto-backup-info-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
    font-family: 'SF Mono', 'Consolas', monospace;
}

/* ---- Storage Usage Bar ---- */
.backups-storage-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border-light);
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-card);
    transition: box-shadow var(--transition-base);
}

.backups-storage-card:hover {
    box-shadow: var(--shadow-md);
}

.backups-storage-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.backups-storage-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
}

.backups-storage-title svg {
    width: 16px;
    height: 16px;
    color: var(--color-primary);
}

.backups-storage-count {
    font-size: 13px;
    color: var(--color-text-secondary);
    font-weight: 500;
}

.backups-storage-bar {
    height: 12px;
    background: var(--color-surface-alt);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.backups-storage-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-primary) 0%, #10b981 100%);
    border-radius: 12px;
    transition: width 0.6s ease;
    box-shadow: 0 0 8px rgba(59, 130, 246, 0.4);
}

/* ---- Timeline Container ---- */
.backups-timeline-container {
    position: relative;
}

.backups-timeline {
    position: relative;
    padding: 10px 0;
}

/* ---- Timeline Item ---- */
.backups-timeline-item {
    position: relative;
    padding-left: 60px;
    padding-bottom: 30px;
}

.backups-timeline-item:last-child {
    padding-bottom: 10px;
}

.backups-timeline-item:last-child .backups-timeline-line {
    display: none;
}

/* Timeline dot */
.backups-timeline-dot {
    position: absolute;
    left: 20px;
    top: 24px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--color-primary);
    border: 3px solid var(--color-surface);
    box-shadow: 0 0 0 3px var(--color-primary-light);
    z-index: 2;
    transition: all var(--transition-fast);
}

.backups-timeline-item:hover .backups-timeline-dot {
    transform: scale(1.3);
    box-shadow: 0 0 0 5px var(--color-primary-light);
}

/* Timeline line */
.backups-timeline-line {
    position: absolute;
    left: 27px;
    top: 40px;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--color-border) 0%, transparent 100%);
    z-index: 1;
}

/* ---- Backup Card ---- */
.backups-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border-light);
    border-left: 4px solid var(--color-primary);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all var(--transition-fast);
}

.backups-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
    border-left-color: var(--color-primary);
}

.backups-card[data-status="completed"] {
    border-left-color: var(--color-success, #10b981);
}

.backups-card[data-status="failed"] {
    border-left-color: var(--color-danger, #ef4444);
}

.backups-card[data-status="pending"] {
    border-left-color: #f59e0b;
}

/* Card header */
.backups-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 16px 20px;
    background: var(--color-surface-alt);
    border-bottom: 1px solid var(--color-border-light);
}

.backups-card-header-left {
    display: flex;
    gap: 16px;
    align-items: center;
}

.backups-card-datetime {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.backups-card-date {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text);
    font-family: 'SF Mono', 'Consolas', monospace;
}

.backups-card-time {
    font-size: 13px;
    color: var(--color-text-secondary);
    font-family: 'SF Mono', 'Consolas', monospace;
}

.backups-card-relative {
    font-size: 12px;
    color: var(--color-text-muted);
    font-style: italic;
}

.backups-card-header-right {
    display: flex;
    align-items: center;
}

.backups-card-compare {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.backups-card-compare input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--color-primary);
    cursor: pointer;
    border-radius: var(--radius-sm);
}

/* Card body */
.backups-card-body {
    padding: 20px;
}

.backups-card-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 12px;
    font-family: 'SF Mono', 'Consolas', monospace;
}

.backups-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.backups-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.backups-card-badge svg {
    width: 12px;
    height: 12px;
}

.backups-card-badge-manual {
    background: var(--color-primary-light);
    color: var(--color-primary);
}

.backups-card-badge-auto {
    background: var(--color-success-light);
    color: var(--color-success, #10b981);
}

.backups-card-badge-incremental {
    background: rgba(245, 158, 11, 0.1);
    color: #d97706;
}

.backups-card-badge-size {
    background: var(--color-surface-alt);
    color: var(--color-text-secondary);
}

.backups-card-badge-count {
    background: var(--color-info-light);
    color: var(--color-info, #3b82f6);
}

.backups-card-status {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: var(--radius-md);
    font-size: 13px;
    font-weight: 600;
}

.backups-card-status svg {
    flex-shrink: 0;
}

.backups-card-status-completed {
    background: var(--color-success-light);
    color: var(--color-success, #10b981);
}

.backups-card-status-failed {
    background: rgba(239, 68, 68, 0.1);
    color: var(--color-danger, #ef4444);
}

.backups-card-status-pending {
    background: rgba(245, 158, 11, 0.1);
    color: #d97706;
}

/* Card footer */
.backups-card-footer {
    display: flex;
    gap: 10px;
    padding: 16px 20px;
    background: var(--color-surface-alt);
    border-top: 1px solid var(--color-border-light);
}

.backups-card-footer .btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 16px;
    transition: all var(--transition-fast);
}

.backups-card-footer .btn svg {
    width: 16px;
    height: 16px;
}

.backups-card-footer .btn-primary {
    background: var(--color-primary);
    color: #fff;
    border: none;
}

.backups-card-footer .btn-primary:hover {
    background: var(--color-primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.backups-card-footer .btn-ghost {
    background: transparent;
    color: var(--color-text-secondary);
    border: 1px solid var(--color-border);
}

.backups-card-footer .btn-ghost:hover {
    background: var(--color-surface);
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.backups-card-footer .btn-danger-text {
    color: var(--color-danger, #ef4444);
    border-color: transparent;
}

.backups-card-footer .btn-danger-text:hover {
    background: rgba(239, 68, 68, 0.1);
    border-color: var(--color-danger, #ef4444);
}

/* ---- Empty State ---- */
.backups-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 24px;
    min-height: 400px;
}

.backups-empty-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--color-primary-light);
    color: var(--color-primary);
    margin-bottom: 24px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.backups-empty-icon svg {
    width: 48px;
    height: 48px;
    opacity: 0.9;
}

.backups-empty-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text);
    margin: 0 0 12px 0;
}

.backups-empty-desc {
    font-size: 15px;
    color: var(--color-text-secondary);
    margin: 0 0 28px 0;
    max-width: 400px;
    line-height: 1.6;
}

.backups-empty-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.backups-no-results .backups-empty-icon {
    background: var(--color-surface-alt);
    color: var(--color-text-muted);
    width: 80px;
    height: 80px;
}

.backups-no-results .backups-empty-icon svg {
    width: 36px;
    height: 36px;
}

/* ---- Comparison Modal Enhancements ---- */
.backup-compare-diff-count {
    padding: 16px 20px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--color-primary-light) 0%, rgba(var(--color-primary-rgb, 59, 130, 246), 0.05) 100%);
    border: 1px solid var(--color-primary);
    border-radius: var(--radius-lg);
    text-align: center;
    font-size: 15px;
    color: var(--color-text-secondary);
}

.backup-compare-diff-count strong {
    font-size: 28px;
    font-weight: 800;
    color: var(--color-primary);
    display: block;
    margin-bottom: 4px;
}

.backup-compare-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 16px;
    margin-bottom: 16px;
    background: var(--color-surface-alt);
    border-radius: var(--radius-md);
    flex-wrap: wrap;
}

.backup-compare-side {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.backup-compare-side strong {
    display: block;
    font-size: 13px;
    color: var(--color-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
}

.backup-compare-side p {
    margin: 0;
    font-size: 11px;
    color: var(--color-text-muted);
}

.backup-compare-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    flex-shrink: 0;
}

.backup-compare-badge-a {
    background: rgba(59, 130, 246, 0.15);
    color: var(--color-primary);
}

.backup-compare-badge-b {
    background: rgba(16, 185, 129, 0.15);
    color: var(--color-success, #10b981);
}

.backup-compare-vs {
    font-size: 12px;
    font-weight: 700;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Compare Summary Cards */
.backup-compare-summary {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.compare-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 12px;
    border-radius: 12px;
    text-align: center;
}

.compare-stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.compare-stat-value {
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 6px;
}

.compare-stat-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.compare-stat-added {
    background: rgba(16, 185, 129, 0.08);
}
.compare-stat-added .compare-stat-icon {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
}
.compare-stat-added .compare-stat-value {
    color: #10b981;
}
.compare-stat-added .compare-stat-label {
    color: #10b981;
}

.compare-stat-removed {
    background: rgba(239, 68, 68, 0.08);
}
.compare-stat-removed .compare-stat-icon {
    background: rgba(239, 68, 68, 0.15);
    color: #dc2626;
}
.compare-stat-removed .compare-stat-value {
    color: #dc2626;
}
.compare-stat-removed .compare-stat-label {
    color: #dc2626;
}

.compare-stat-changed {
    background: rgba(245, 158, 11, 0.08);
}
.compare-stat-changed .compare-stat-icon {
    background: rgba(245, 158, 11, 0.15);
    color: #d97706;
}
.compare-stat-changed .compare-stat-value {
    color: #d97706;
}
.compare-stat-changed .compare-stat-label {
    color: #d97706;
}

.compare-stat-same {
    background: rgba(148, 163, 184, 0.08);
}
.compare-stat-same .compare-stat-icon {
    background: rgba(148, 163, 184, 0.15);
    color: #64748b;
}
.compare-stat-same .compare-stat-value {
    color: #64748b;
}
.compare-stat-same .compare-stat-label {
    color: #64748b;
}

/* Diff Sections */
.compare-sections {
    max-height: 500px;
    overflow-y: auto;
    padding-right: 4px;
}

.compare-section {
    margin-bottom: 20px;
}

.compare-section-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 12px 0;
    padding-bottom: 8px;
    border-bottom: 2px solid;
}

.compare-section-title svg {
    flex-shrink: 0;
}

.compare-section-added {
    color: #10b981;
    border-bottom-color: rgba(16, 185, 129, 0.3);
}

.compare-section-removed {
    color: #dc2626;
    border-bottom-color: rgba(239, 68, 68, 0.3);
}

.compare-section-changed {
    color: #d97706;
    border-bottom-color: rgba(245, 158, 11, 0.3);
}

.compare-section-items {
    max-height: 250px;
    overflow-y: auto;
}

.compare-item {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    margin-bottom: 8px;
    font-size: 13px;
    transition: all var(--transition-fast);
    cursor: pointer;
}

.compare-item-added {
    background: rgba(16, 185, 129, 0.06);
    border-left: 3px solid #10b981;
    color: var(--color-text);
}

.compare-item-removed {
    background: rgba(239, 68, 68, 0.06);
    border-left: 3px solid #dc2626;
    color: var(--color-text);
}

.compare-item-changed {
    background: rgba(245, 158, 11, 0.06);
    border-left: 3px solid #d97706;
    color: var(--color-text);
}

.compare-item:hover {
    transform: translateX(4px);
}

.compare-item-added:hover {
    background: rgba(16, 185, 129, 0.12);
}

.compare-item-removed:hover {
    background: rgba(239, 68, 68, 0.12);
}

.compare-item-changed:hover {
    background: rgba(245, 158, 11, 0.12);
}

.compare-item-name {
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
}

.compare-item-detail {
    display: block;
    font-size: 12px;
    color: var(--color-text-muted);
    margin-top: 2px;
}

.compare-item-fields {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 6px;
}

.compare-field-change {
    font-size: 12px;
    color: var(--color-text-secondary);
}

.compare-field-name {
    font-weight: 600;
    color: var(--color-text-secondary);
}

.compare-field-old {
    color: #dc2626;
    text-decoration: line-through;
}

.compare-field-new {
    color: #10b981;
    font-weight: 600;
}

.compare-item-more {
    padding: 8px 12px;
    font-size: 12px;
    color: var(--color-text-muted);
    font-style: italic;
}

.compare-no-diff {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 16px;
    text-align: center;
    color: var(--color-text-muted);
}

.compare-no-diff-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    margin-bottom: 16px;
}

.compare-no-diff p {
    font-size: 14px;
    margin: 0;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
    .backups-toolbar {
        flex-wrap: wrap;
        gap: 10px;
    }

    .backups-toolbar .search-input {
        min-width: 100%;
    }

    .backups-filter-group {
        width: 100%;
        flex-wrap: wrap;
    }

    .backups-date-input,
    .backups-type-select {
        flex: 1;
        min-width: 0;
    }

    .backups-auto-backup-info {
        flex-direction: column;
        gap: 12px;
    }

    .backups-timeline-item {
        padding-left: 50px;
    }

    .backups-timeline-dot {
        left: 15px;
    }

    .backups-timeline-line {
        left: 22px;
    }

    .backups-card-footer {
        flex-direction: column;
    }

    .backup-compare-summary {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .backups-auto-backup-card {
        margin-bottom: 16px;
    }

    .backups-auto-backup-header {
        padding: 16px 18px;
    }

    .backups-auto-backup-body.active {
        padding: 16px 18px;
    }

    .backups-storage-card {
        padding: 16px;
    }

    .backups-timeline-item {
        padding-left: 40px;
    }

    .backups-timeline-dot {
        left: 10px;
        width: 12px;
        height: 12px;
    }

    .backups-timeline-line {
        left: 15px;
    }

    .backups-card-header {
        padding: 12px 16px;
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .backups-card-body {
        padding: 16px;
    }

    .backups-card-footer {
        padding: 12px 16px;
    }

    .backups-empty-icon {
        width: 80px;
        height: 80px;
    }

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

    .backup-compare-header {
        flex-direction: column;
        gap: 12px;
    }

    .backup-compare-summary {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .compare-stat {
        padding: 12px 10px;
    }

    .compare-stat-value {
        font-size: 20px;
    }
}
