/* Migrated from live-tv/link-auditor/auditor.css */
body_old {
    font-family:
        -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: #09090b;
    color: #fafafa;
    padding: 24px;
    margin: 0;
}

.auditor-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

h1 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: #f4f4f5;
}

p {
    color: #71717a;
    font-size: 0.85rem;
    margin-bottom: 20px;
}

/* Workspace grid */
.workspace {
    display: grid;
    grid-template-columns: 1.1fr 1.4fr 1.3fr;
    gap: 20px;
}

@media (max-width: 1100px) {
    .workspace {
        grid-template-columns: 1fr;
    }
}

/* Single Link Card */
.input-card {
    background: #18181b;
    border: 1px solid #27272a;
    border-radius: 6px;
    padding: 16px;
    margin-bottom: 20px;
}

.input-card h3 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #f4f4f5;
    display: flex;
    align-items: center;
    gap: 8px;
}

.input-row {
    display: flex;
    gap: 8px;
}

.input-row input {
    flex: 1;
    background: #09090b;
    border: 1px solid #27272a;
    border-radius: 4px;
    padding: 8px 12px;
    color: #fff;
    font-size: 0.8rem;
    outline: none;
}

.input-row input:focus {
    border-color: #2563eb;
}

.input-row button {
    background: #2563eb;
    color: white;
    border: none;
    padding: 8px 14px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.15s;
    white-space: nowrap;
}

.input-row button:hover {
    background: #1d4ed8;
}

.single-result {
    margin-top: 10px;
    font-size: 0.75rem;
    display: none;
    align-items: center;
    gap: 6px;
}

.single-result.active {
    display: flex;
}

/* Adjust bulk container */
.bulk-card {
    background: #18181b;
    border: 1px solid #27272a;
    border-radius: 6px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    height: 480px;
    box-sizing: border-box;
}

.bulk-card h3 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #f4f4f5;
}

textarea {
    width: 100%;
    flex: 1;
    background: #09090b;
    border: 1px solid #27272a;
    border-radius: 4px;
    color: #f4f4f5;
    font-family: monospace;
    font-size: 0.75rem;
    padding: 10px;
    resize: none;
    outline: none;
    box-sizing: border-box;
}

textarea:focus {
    border-color: #2563eb;
}

.results-panel {
    background: #18181b;
    border: 1px solid #27272a;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    height: 610px;
    overflow: hidden;
}

/* Preview Player Card */
.player-card {
    background: #18181b;
    border: 1px solid #27272a;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    height: 610px;
    overflow: hidden;
}

.player-header {
    background: #1c1c1f;
    padding: 12px;
    border-bottom: 1px solid #27272a;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.player-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: #f4f4f5;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.player-engine-badge {
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 3px;
    background: #27272a;
    color: #a1a1aa;
}

.player-stage {
    position: relative;
    background: #000;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.player-stage video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.player-stage .overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(9, 9, 11, 0.85);
    color: #a1a1aa;
    font-size: 0.8rem;
    text-align: center;
    padding: 16px;
    pointer-events: none;
    z-index: 10;
}

.player-stage .overlay.hidden {
    display: none;
}

.player-stage .spinner {
    width: 32px;
    height: 32px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: #2563eb;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-bottom: 12px;
}

.player-controls {
    background: #1c1c1f;
    padding: 12px;
    border-top: 1px solid #27272a;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.player-controls button {
    background: transparent;
    border: none;
    color: #a1a1aa;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.15s;
}

.player-controls button:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.player-controls .playback-btn {
    background: #2563eb;
    color: #fff;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.player-controls .playback-btn:hover {
    background: #1d4ed8;
}

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

/* Toolbar Components */
.toolbar {
    background: #1c1c1f;
    padding: 12px;
    border-bottom: 1px solid #27272a;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.toolbar-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

/* Search Input */
.search-box {
    position: relative;
    flex: 1;
    min-width: 200px;
}

.search-box input {
    width: 100%;
    background: #09090b;
    border: 1px solid #27272a;
    padding: 6px 12px;
    border-radius: 4px;
    color: #fff;
    font-size: 0.8rem;
    outline: none;
}

.search-box input:focus {
    border-color: #2563eb;
}

.stats {
    display: flex;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: bold;
}

.stat-item {
    padding: 4px 8px;
    border-radius: 4px;
    background: #09090b;
}

.stat-item.total {
    color: #3b82f6;
}

.stat-item.working {
    color: #10b981;
}

.stat-item.dead {
    color: #ef4444;
}

.filter-group {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}

.filter-btn {
    background: #27272a;
    color: #a1a1aa;
    border: 1px solid #3f3f46;
    padding: 4px 10px;
    font-size: 0.72rem;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.15s;
}

.filter-btn:hover {
    background: #3f3f46;
    color: #fff;
}

.filter-btn.active {
    background: #2563eb;
    color: #fff;
    border-color: #3b82f6;
}

/* Dedicated Green Filter Button Highlight */
.filter-btn.green-only.active {
    background: #10b981;
    border-color: #059669;
}

.action-btn {
    background: #2563eb;
    color: white;
    border: none;
    padding: 5px 12px;
    font-size: 0.72rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.15s;
    display: flex;
    align-items: center;
    gap: 4px;
}

.action-btn:hover {
    background: #1d4ed8;
}

/* Output Logs Frame */
.log-output {
    flex: 1;
    overflow-y: auto;
    padding: 4px;
    font-family: monospace;
    font-size: 0.75rem;
}

.log-entry {
    padding: 6px 8px;
    border-bottom: 1px solid #27272a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.15s;
}

.log-entry:hover {
    background: rgba(255, 255, 255, 0.05);
}

.log-entry.active-playing {
    border-left: 3px solid #2563eb;
    background: rgba(37, 99, 235, 0.08) !important;
}

.log-entry.working {
    color: #10b981;
    background: rgba(16, 185, 129, 0.02);
}

.log-entry.dead {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.02);
}

.log-entry.cors {
    color: #f59e0b;
    background: rgba(245, 158, 11, 0.02);
}

.log-url {
    color: #71717a;
    max-width: 520px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 0.7rem;
}

.run-btn {
    width: 100%;
    background: #2563eb;
    color: white;
    border: none;
    padding: 12px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 10px;
    transition: background 0.15s;
}

.run-btn:hover {
    background: #1d4ed8;
}

.run-btn:disabled {
    background: #27272a;
    color: #71717a;
    cursor: not-allowed;
}

/* Tabs in Player Card */
.player-tabs {
    display: flex;
    background: #1c1c1f;
    border-bottom: 1px solid #27272a;
}

.tab-btn {
    flex: 1;
    background: transparent;
    border: none;
    color: #a1a1aa;
    padding: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s;
    text-align: center;
    border-bottom: 2px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.tab-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.02);
}

.tab-btn.active {
    color: #3b82f6;
    border-bottom-color: #3b82f6;
    background: rgba(59, 130, 246, 0.04);
}

.tab-content {
    display: none;
    flex: 1;
    flex-direction: column;
    overflow: hidden;
}

.tab-content.active {
    display: flex;
}

/* Decoder Tab Content */
.decoder-content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow-y: auto;
    height: 100%;
    box-sizing: border-box;
}

.decoder-input-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.decoder-textarea {
    width: 100%;
    height: 60px;
    background: #09090b;
    border: 1px solid #27272a;
    border-radius: 4px;
    color: #fff;
    font-family: monospace;
    font-size: 0.75rem;
    padding: 8px;
    resize: none;
    outline: none;
}

.decoder-textarea:focus {
    border-color: #3b82f6;
}

.decoder-btn {
    background: #2563eb;
    color: white;
    border: none;
    padding: 8px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.15s;
}

.decoder-btn:hover {
    background: #1d4ed8;
}

.decoder-badge-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #10b981;
}

/* Decoder Table */
.decoder-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.75rem;
}

.decoder-table th,
.decoder-table td {
    padding: 8px 10px;
    text-align: left;
    border-bottom: 1px solid #27272a;
}

.decoder-table th {
    color: #a1a1aa;
    font-weight: 500;
    width: 30%;
}

.decoder-param-key {
    font-family: monospace;
    color: #3b82f6;
    font-weight: 600;
}

.decoder-param-val {
    font-family: monospace;
    word-break: break-all;
}

.decoder-pre {
    background: #09090b;
    border: 1px solid #27272a;
    border-radius: 4px;
    padding: 10px;
    overflow-x: auto;
    font-family: monospace;
    font-size: 0.75rem;
    color: #10b981;
    max-height: 150px;
    margin: 0;
}

.decoder-error-banner {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.2);
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    display: none;
}

/* =========================================================================
   Redesigned Premium Link Auditor Dashboard Styles
   ========================================================================= */

.ds-auditor-main {
    padding: 20px;
    padding-top: calc(var(--nav-height, 70px) + 20px);
    padding-bottom: 60px;
    min-height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.auditor-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.auditor-header {
    margin-bottom: 8px;
}

.auditor-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px 0;
    background: linear-gradient(135deg, #fff 0%, #a1a1aa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.auditor-subtitle {
    font-size: 0.95rem;
    color: #a1a1aa;
    margin: 0;
    max-width: 800px;
    line-height: 1.5;
}

/* Dashboard Stats Grid */
.auditor-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}

.stat-card {
    background: rgba(24, 24, 27, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.stat-card:hover {
    transform: translateY(-2px);
    background: rgba(39, 39, 42, 0.6);
    box-shadow: 0 8px 24px -8px rgba(0, 0, 0, 0.5);
}

.stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    color: #a1a1aa;
}

.stat-card.total-links .stat-icon { color: #3b82f6; background: rgba(59, 130, 246, 0.1); }
.stat-card.online-links .stat-icon { color: #10b981; background: rgba(16, 185, 129, 0.1); }
.stat-card.offline-links .stat-icon { color: #ef4444; background: rgba(239, 68, 68, 0.1); }
.stat-card.m3u8-links .stat-icon { color: #f59e0b; background: rgba(245, 158, 11, 0.1); }
.stat-card.mpd-links .stat-icon { color: #8b5cf6; background: rgba(139, 92, 246, 0.1); }
.stat-card.unknown-links .stat-icon { color: #71717a; background: rgba(113, 113, 122, 0.1); }
.stat-card.avg-latency .stat-icon { color: #06b6d4; background: rgba(6, 182, 212, 0.1); }

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

.stat-label {
    font-size: 0.8rem;
    color: #a1a1aa;
    font-weight: 500;
    margin-bottom: 4px;
}

.stat-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
}

/* Premium Card (Input & Results) */
.premium-card {
    background: rgba(24, 24, 27, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.input-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.input-title {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
}

.input-badge {
    font-size: 0.75rem;
    padding: 4px 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: #a1a1aa;
    font-weight: 500;
}

.textarea-wrapper {
    position: relative;
    margin-bottom: 16px;
}

.auditor-textarea {
    width: 100%;
    min-height: 140px;
    background: #09090b;
    border: 1px solid #27272a;
    border-radius: 8px;
    padding: 16px;
    color: #e4e4e7;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 0.85rem;
    line-height: 1.5;
    resize: vertical;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
}

.auditor-textarea:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}

.auditor-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.action-group-left, .action-group-right {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-outline, .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    outline: none;
}

.btn-outline {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #e4e4e7;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.btn-primary {
    background: #2563eb;
    color: #fff;
    box-shadow: 0 4px 14px 0 rgba(37, 99, 235, 0.39);
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.glow-effect {
    position: relative;
    overflow: hidden;
}

.glow-effect::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    transform: scale(0.5);
}

.glow-effect:hover::after {
    opacity: 1;
    transform: scale(1);
}

/* Premium Progress Indicator */
.premium-progress {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.progress-text-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: #a1a1aa;
}

.progress-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
}

.progress-track {
    width: 100%;
    height: 6px;
    background: #27272a;
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    border-radius: 10px;
    width: 0%;
    transition: width 0.3s ease;
}

.shimmer {
    position: relative;
}

.shimmer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Premium Table Card */
.premium-table-card {
    background: rgba(24, 24, 27, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.table-toolbar {
    padding: 16px 20px;
    border-bottom: 1px solid #27272a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.table-search {
    position: relative;
    flex: 1;
    min-width: 250px;
}

.table-search svg {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #71717a;
}

.table-search input {
    width: 100%;
    background: #09090b;
    border: 1px solid #27272a;
    border-radius: 8px;
    padding: 10px 12px 10px 36px;
    color: #e4e4e7;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s ease;
    box-sizing: border-box;
}

.table-search input:focus {
    border-color: #3b82f6;
}

.table-filters {
    display: flex;
    gap: 8px;
}

.filter-badge {
    background: transparent;
    border: 1px solid #3f3f46;
    color: #a1a1aa;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-badge:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.filter-badge.active {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
    border-color: rgba(59, 130, 246, 0.3);
}

.filter-badge.online.active {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    border-color: rgba(16, 185, 129, 0.3);
}

.filter-badge.offline.active {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    border-color: rgba(239, 68, 68, 0.3);
}

.table-responsive-wrapper {
    overflow-x: auto;
    width: 100%;
}

.premium-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    min-width: 900px;
}

.premium-table th {
    background: rgba(0, 0, 0, 0.2);
    color: #a1a1aa;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 14px 20px;
    border-bottom: 1px solid #27272a;
    position: sticky;
    top: 0;
    z-index: 10;
}

.premium-table td {
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    font-size: 0.85rem;
    color: #e4e4e7;
    vertical-align: middle;
}

.premium-table tbody tr {
    transition: background-color 0.2s ease;
}

.premium-table tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.02);
}

.text-right {
    text-align: right;
}

/* Status Badges */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.status-badge::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.status-online {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}
.status-online::before { background: #10b981; box-shadow: 0 0 6px #10b981; }

.status-offline {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}
.status-offline::before { background: #ef4444; box-shadow: 0 0 6px #ef4444; }

.status-unknown {
    background: rgba(113, 113, 122, 0.1);
    color: #a1a1aa;
}
.status-unknown::before { background: #a1a1aa; }

.type-badge {
    background: #27272a;
    color: #d4d4d8;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-family: monospace;
}

.cell-url {
    max-width: 250px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #a1a1aa;
    font-family: monospace;
}

.action-icon-btn {
    background: transparent;
    border: none;
    color: #71717a;
    cursor: pointer;
    padding: 6px;
    border-radius: 6px;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.action-icon-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.action-icon-btn.play {
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
}
.action-icon-btn.play:hover {
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
}

/* Skeleton Loader */
.skeleton-container {
    padding: 0;
}

.skeleton-container.hidden {
    display: none;
}

.skeleton-row {
    display: flex;
    align-items: center;
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    gap: 20px;
}

.skel {
    background: linear-gradient(90deg, #27272a 25%, #3f3f46 50%, #27272a 75%);
    background-size: 200% 100%;
    animation: skel-loading 1.5s infinite;
    border-radius: 4px;
}

@keyframes skel-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.skel-avatar { width: 32px; height: 32px; border-radius: 8px; }
.skel-line { height: 16px; width: 100px; }
.skel-line.full { flex: 1; }
.skel-badge { width: 80px; height: 24px; border-radius: 12px; }
.skel-text { width: 60px; height: 16px; }

/* Responsive adjustments */
@media (max-width: 1024px) {
    .auditor-stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }
}

@media (max-width: 768px) {
    .action-group-left, .action-group-right {
        width: 100%;
        justify-content: stretch;
    }
    
    .action-group-right {
        flex-direction: column-reverse;
    }
    
    .btn-outline, .btn-primary {
        width: 100%;
        justify-content: center;
    }
}