.formsurvey-charts {
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.fa-chart-block {
    background: #ffffff;
    border-radius: 10px;
    padding: 15px;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid #eef1f5;
    transition: all 0.2s ease;
}
.fa-chart-block:hover {
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}
.fa-chart-block h4 {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 6px;
}
.fa-chart-total {
    font-size: 12px;
    color: #95a5a6;
    margin-bottom: 4px;
}
.fa-chart-block canvas {
    width: 100% !important;
    height: 240px !important; /* 🔥 фиксированная высота */
    max-height: 240px !important;
}
.fa-charts-loading,
.fa-error,
.fa-empty {
    padding: 20px;
    text-align: center;
    color: #7f8c8d;
    font-size: 14px;
}
.fa-charts-accordion {
    margin-top: 30px;
}
.fa-charts-toggle {
    padding: 12px 16px;
    background: #2c3e50;
    color: #ffffff;

    border-radius: 8px;
    cursor: pointer;
    user-select: none;

    font-size: 14px;
    font-weight: 500;

    transition: background 0.2s ease;
}
.fa-charts-toggle:hover {
    background: #34495e;
}
.fa-charts-wrapper {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}
.fa-charts-wrapper.active {
    max-height: 600px;
    overflow-y: auto;
    margin-top: 15px;
    padding-right: 6px;
}
.fa-charts-wrapper::-webkit-scrollbar {
    width: 8px;
}
.fa-charts-wrapper::-webkit-scrollbar-track {
    background: #f4f6f8;
    border-radius: 10px;
}
.fa-charts-wrapper::-webkit-scrollbar-thumb {
    background: #c0c6cc;
    border-radius: 10px;
}
.fa-charts-wrapper::-webkit-scrollbar-thumb:hover {
    background: #aab2b8;
}
.fa-charts-title {
    margin-bottom: 15px;
}
.fa-title-main {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
}
.fa-title-sub {
    font-size: 13px;
    color: #7f8c8d;
    margin-top: 4px;
}
.fa-chart-org .fa-chart-content {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}
.fa-chart-org canvas {
    flex: 0 0 50%;
}
.fa-org-list {
    flex: 1;
    max-height: 240px;
    overflow-y: auto;

    font-size: 13px;
    color: #2c3e50;
}
.fa-org-item {
    padding: 4px 0;
    border-bottom: 1px solid #f0f2f5;
}
.fa-org-list::-webkit-scrollbar {
    width: 6px;
}
.fa-org-list::-webkit-scrollbar-thumb {
    background: #c0c6cc;
    border-radius: 6px;
}
@media (max-height: 800px) {
    .fa-charts-wrapper.active {
        max-height: 400px;
    }
}
@media (max-width: 768px) {
    .fa-chart-block {
        min-height: 280px;
    }
    .fa-chart-block canvas {
        height: 200px !important;
        max-height: 200px !important;
    }
}