.sector-page {
    padding: 20px 24px;
    background-color: #ffffff;
}

.sector-title {
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    color: #0d6efd;
    margin: 5px 0 14px;
}

.sector-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr); 
    gap: 10px; 
    margin-bottom: 24px;
}

.sector-table {
    width: 96%;
    margin: 0 auto;
    border-collapse: collapse;
    font-size: 13px;
    background-color: #fff;
    table-layout: fixed;
}

.sector-table thead th {
    border: 1px solid #000;
    padding: 4px 4px; 
    background-color: #f5f5f5;
    color: #0255ba;
    font-weight: bold;
    text-align: center;
    white-space: nowrap;
}

.sector-table thead th:first-child,
.sector-table tbody td:first-child {
    width: 34px;          
    min-width: 34px;
    max-width: 34px;
    padding: 4px 2px;
    text-align: center;
}

.sector-table thead th:last-child,
.sector-table tbody td:last-child {
    padding: 4px 6px;
    text-align: center;
    white-space: nowrap;       
    overflow: hidden;
    text-overflow: ellipsis;  
}

.sector-table tbody td {
    border: 1px solid #000;
    vertical-align: middle;
}

.sector-table tbody tr:hover {
    background-color: #fff5f5;
    cursor: pointer;
}

.sector-table td a {
    display: block;              
    width: 100%;
    height: 100%;
    color: #111;                
    text-decoration: none;     
    font-weight: 500;
    transition: all 0.15s ease;
}

.sector-table td a:hover {
    color: #c40000;              
    text-decoration: underline;  
}

.sector-table tbody tr:hover td a {
    color: #c40000;
}

@media (max-width: 1400px) {
    .sector-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

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

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

    .sector-table {
        font-size: 14px;
    }
}
