:root.tools-status-guide {
    --primary: #0077BE;
    --primary-dark: #005a8d;
    --primary-light: #00CED1;
    --accent: linear-gradient(135deg, #0077BE 0%, #00CED1 100%);
    --accent-hover: #005a8d;
    --gradient-main: linear-gradient(135deg, #0077BE 0%, #00CED1 100%);
    --gradient-2: linear-gradient(135deg, #00CED1 0%, #0077BE 100%);
    --text-primary: #1a2e35;
    --text-secondary: #6b7280;
    --text-dark: #1f2937;
    --bg-light: #f9fafb;
    --border-light: #e5e7eb;
    --primary-bg-1: rgba(0, 119, 190, 0.03);
    --primary-bg-2: rgba(0, 206, 209, 0.03);
    --hero-filter: drop-shadow(0 4px 20px rgba(0, 119, 190, 0.2));
    --focus-shadow: 0 25px 50px rgba(0, 119, 190, 0.12), inset 0 0 0 2px rgba(0, 119, 190, 0.08);
}

.sample-intro {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 20px;
    font-style: italic;
}

.sample-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 12px;
}

.sample-btn {
    padding: 8px 16px;
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    color: var(--text-primary);
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
}

.sample-btn:hover {
    background: var(--gradient-main);
    color: #fff;
    border-color: transparent;
}

.results-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 20px 40px;
}

.results-count {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.category-section {
    margin-bottom: 32px;
}

.category-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--primary);
}

.status-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.status-card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border-left: 4px solid var(--border-light);
}

.status-card.severity-critical {
    border-left-color: #ef4444;
}

.status-card.severity-high {
    border-left-color: #f59e0b;
}

.status-card.severity-medium {
    border-left-color: #3b82f6;
}

.status-card.severity-low {
    border-left-color: #10b981;
}

.status-card.severity-none {
    border-left-color: #6b7280;
}

.status-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    flex-wrap: wrap;
    gap: 8px;
}

.status-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.severity-badge {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.severity-badge.severity-critical {
    background: #fef2f2;
    color: #dc2626;
}

.severity-badge.severity-high {
    background: #fffbeb;
    color: #d97706;
}

.severity-badge.severity-medium {
    background: #eff6ff;
    color: #2563eb;
}

.severity-badge.severity-low {
    background: #f0fdf4;
    color: #16a34a;
}

.severity-badge.severity-none {
    background: #f9fafb;
    color: #6b7280;
}

.status-description {
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--text-primary);
    line-height: 1.6;
}

.status-description p {
    margin: 0;
}

.status-action {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    padding: 12px;
    background: var(--bg-light);
    border-radius: 8px;
}

.status-action p {
    margin: 0;
}

.error-message {
    text-align: center;
    padding: 40px 20px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    color: var(--text-primary);
    font-size: 1.1rem;
}

.suggestions {
    margin-top: 24px;
}

.suggestions p {
    margin-bottom: 12px;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .results-container {
        padding: 0 12px 30px;
    }

    .status-card {
        padding: 16px;
    }

    .status-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .status-name {
        font-size: 1rem;
    }

    .sample-buttons {
        flex-direction: column;
        align-items: center;
    }

    .sample-btn {
        width: 100%;
        max-width: 200px;
        text-align: center;
    }
}