.container-statutory-cells-committees {
    width: 100%;
    max-width: 1200px;
    margin: 2rem auto;
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}


/* Loading Spinner */

.loading-spinner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    text-align: center;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(227, 64, 13, 0.2);
    border-top: 4px solid #e3400d;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/* Category Cards */

.category-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.head-statutory-cells-committees {
    position: relative;
    font-size: 1.4rem;
    color: #2d5776;
    font-weight: 700;
    padding-bottom: 12px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.head-statutory-cells-committees::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 4px;
    background-color: #e3400d;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.category-card:hover .head-statutory-cells-committees::after {
    width: 100px;
}


/* Links List */

.check-list-statutory-cells-committees {
    list-style: none;
    padding: 0;
    margin: 0;
}

.check-list-statutory-cells-committees li {
    position: relative;
    padding-left: 0;
    margin-bottom: 12px;
    animation: fadeInUp 0.4s ease forwards;
    opacity: 0;
    transform: translateY(10px);
}

.scc-anchore {
    display: flex;
    align-items: center;
    color: #333;
    text-decoration: none;
    background: #f8f8f8;
    padding: 12px 16px;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border-left: 4px solid transparent;
}

.scc-anchore:hover {
    background: #e3400d;
    color: white;
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(227, 64, 13, 0.2);
    border-left-color: #2d5776;
}

.link-icon {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    transition: all 0.3s ease;
}

.scc-anchore:hover .link-icon {
    transform: rotate(15deg);
    fill: white;
}

.arrow-icon {
    width: 20px;
    height: 20px;
    margin-left: auto;
    opacity: 0;
    transition: all 0.3s ease;
}

.scc-anchore:hover .arrow-icon {
    opacity: 1;
    transform: translateX(5px);
}


/* Empty States */

.no-data-card,
.error-card,
.no-links-card {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    background: #f9f9f9;
    margin: 1rem 0;
}

.no-data-icon,
.error-icon,
.no-links-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.no-data-icon {
    fill: #2d5776;
}

.error-icon {
    fill: #e3400d;
}

.no-links-icon {
    fill: #888;
    width: 40px;
    height: 40px;
}

.retry-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background: #e3400d;
    color: white;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.retry-btn svg {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    fill: white;
}

.retry-btn:hover {
    background: #c2360b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(227, 64, 13, 0.3);
}


/* Responsive Design */

@media (max-width: 768px) {
    .container-statutory-cells-committees {
        padding: 1.5rem;
    }
    .head-statutory-cells-committees {
        font-size: 1.2rem;
    }
    .scc-anchore {
        padding: 10px 12px;
        font-size: 0.95rem;
    }
    .link-icon {
        width: 18px;
        height: 18px;
        margin-right: 8px;
    }
}

@media (max-width: 480px) {
    .loading-spinner {
        padding: 2rem 1rem;
    }
    .category-card {
        padding: 1rem;
    }
}