.ext-categories-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 10px 20px;

    .browser-icon {
        margin-right: auto!important;
        height: none!important;
    }
}

.ext-categories-section-title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 40px;
    text-align: center;
}

.ext-categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    align-items: start;
}

.ext-category-card {
    background: #ffffff;
    border-radius: 6px;
    overflow: hidden;
}

.ext-category-header {
    padding: 20px 0 16px 0;
    background: transparent;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 12px;
}

.ext-category-title {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
    padding: 0 20px;
    text-align: center;
    letter-spacing: -0.2px;
}

.ext-category-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 8px;
    background: #ffffff;
    padding: 0 20px 20px 20px;
}

.ext-category-table thead {
    background: transparent;
}

.ext-category-table th {
    text-align: left;
    padding: 8px 12px;
    font-weight: 600;
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #e0e0e0;
}

.ext-category-table th:nth-child(2),
.ext-category-table th:nth-child(3),
.ext-category-table th:nth-child(4) {
    text-align: center;
}

.ext-category-table td {
    padding: 12px;
    border-bottom: 1px solid #f5f5f5;
    font-size: 13px;
    vertical-align: middle;
}

.ext-category-table td:nth-child(2),
.ext-category-table td:nth-child(3),
.ext-category-table td:nth-child(4) {
    text-align: center;
}

.ext-category-table tbody tr:hover {
    background: #f8f9fa;
}

.ext-category-table tbody tr:last-child td {
    border-bottom: none;
}

.ext-name-cell {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ext-icon {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    flex-shrink: 0;
    object-fit: cover;
}

.ext-name {
    font-weight: 500;
    color: #333;
    line-height: 1.4;
    font-size: 13px;
    display: inline-block;
    max-width: 200px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.ext-store-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    color: #666;
}

.browser-icon {
    font-size: 16px;
    color: #666;
}

.ext-risk-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.ext-risk-low {
    color: #28a745;
}

.ext-risk-medium {
    color: #ffc107;
}

.ext-risk-high {
    color: #dc3545;
}

.ext-risk-score {
    font-weight: 600;
    color: #333;
    font-size: 13px;
    min-width: 28px;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .ext-categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .ext-categories-wrapper {
        padding: 30px 16px;
    }

    .ext-categories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ext-category-card {
        border: 1px solid #e0e0e0;
    }

    .ext-category-table {
        padding: 0 16px 16px 16px;
    }

    .ext-category-table th,
    .ext-category-table td {
        padding: 12px 0;
    }

    .ext-category-table th {
        font-size: 11px;
    }

    .ext-category-table td {
        font-size: 12px;
    }

    .ext-icon {
        width: 24px;
        height: 24px;
    }

    .ext-name {
        font-size: 12px;
    }

    .browser-icon {
        font-size: 16px;
    }

    .ext-risk-badge {
        padding: 3px 6px;
        font-size: 10px;
    }

    .ext-risk-score {
        font-size: 12px;
        padding: 3px 6px;
        min-width: 28px;
    }
}
