.container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.header {
    text-align: center;
    margin-bottom: 3rem;
}

.header h1 {
    font-size: 2.8rem;
    color: var(--text-color);
    margin: 0;
}

.header p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.summary-card {
    padding: 1.5rem;
    text-align: center;
}

.summary-card .value {
   font-size: clamp(16pt, 2vw + 0.5rem, 22pt);
    font-weight: 700;
    color: var(--accent-color);
    display: block;
}

.summary-card .label {
    font-size: 1rem;
    color: var(--text-light);
    margin-top: 0.5rem;
    display: block;
}

.gree {background-color: #e4fae3;}
.blu {background-color: #e3effa;}
.red {background-color: #fbdbda;}

.groups-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.75rem 1rem;
    align-items: center;
    font-size: 0.95rem;
}

.info-grid dt {
    font-weight: 500;
}

.info-grid dd {
    margin: 0;
    font-weight: 500;
    text-align: right;
}

.info-grid dd a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: bold;
}

.info-grid dd a:hover {
    text-decoration: underline;
}
.collapsible-content {
    display: none;
    
    transition: all 0.3s ease-in-out;  
}

 
.collapsible-content.show {
    display: block;
}

.toggle-button {
    background-color: transparent;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 8px 12px;
    color: #007bff;  
    cursor: pointer;
    font-weight: bold;
    font-family: inherit;
    font-size: 14px;
    margin-top: 15px;
    width: 100%;
    text-align: center;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.toggle-button:hover {
    background-color: #f8f9fa;
    border-color: #ccc;
}

 .filters {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 20px;
        padding: 15px;
        background-color: #f9f9f9;
        border-radius: 8px;
        border: 1px solid #e1e1e1;
    }
    .filters a {
        display: inline-block;
        padding: 8px 15px;
        background-color: #fff;
        color: #333;
        border-radius: 20px;
        text-decoration: none;
        border: 1px solid #ccc;
        font-size: 14px;
        transition: all 0.2s ease-in-out;
    }
    .filters a:hover {
        background-color: #f0f0f0;
        border-color: #999;
    }
    .filters a.active {
        background-color: #007bff;
        color: #fff;
        border-color: #007bff;
        font-weight: bold;
    }
    .filters a .count {
        font-size: 0.8em;
        margin-left: 5px;
        background-color: rgba(0,0,0,0.05);
        padding: 2px 5px;
        border-radius: 10px;
    }

    @media screen and (max-width: 768px) {
    .container { padding: 1.5rem; } 
   .header h1 { font-size: 1.6rem;}
    .filters a {padding: 3px 6px!important; }
}
