
        .dashboard-card {
            background: white;
            border-radius: 12px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            margin-bottom: 30px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .dashboard-card:hover {
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        .card-header {
            padding: 10px 25px;
            text-align: center;
            background: linear-gradient(86deg, #40ccdc 0%, #1a49ae 100%);
            color: white;
        }
        .grid .card-header {
            padding: 10px 25px;
            text-align: center;
            background: linear-gradient(86deg, #40ccdc 0%, #1a49ae 100%);
            color: white;
        }

        .card-title {
            font-size: 24px;
            font-weight: 500;
            margin-bottom: 0px;
        }
        .grid .card-header {
            padding: 10px 25px;
            text-align: center;
            background: linear-gradient(86deg, #40ccdc 0%, #1a49ae 100%);
            color: white;
        }
        .grid .card-title {
            font-size: 24px;
            font-weight: 500;
            margin-bottom: 0px;
        }

        .chart-container {
            padding: 20px;
            position: relative;
        }

        .chart {
            display: flex;
            align-items: end;
            justify-content: center;
            height: 300px;
            margin: 40px 0;
            position: relative;
        }

        .chart-section {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin: 0 20px;
        }

        .section-title {
            font-weight: 600;
            margin-bottom: 20px;
            color: #555;
            font-size: 14px;
        }

        .bars-group {
            display: flex;
            gap: 8px;
            align-items: end;
        }

        .bar {
            width: 60px;
            background: #a8d5a8;
            border-radius: 4px 4px 0 0;
            position: relative;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .bar:hover {
            opacity: 0.8;
            transform: translateY(-2px);
        }

        .bar.high {
            height: 180px;
        }

        .bar.med {
            height: 120px;
        }

        .bar.low {
            height: 80px;
        }

        .y-axis {
            position: absolute;
            left: 0;
            top: 0;
            height: 300px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            font-size: 12px;
            color: #666;
        }

        .y-axis-label {
            position: absolute;
            left: -80px;
            top: 50%;
            transform: rotate(-90deg) translateX(-50%);
            font-weight: 500;
            color: #555;
        }

        .x-axis-label {
            position: absolute;
            bottom: -40px;
            left: 50%;
            transform: translateX(-50%);
            font-weight: 500;
            color: #555;
        }

        .legend {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
            flex-wrap: wrap;
        }

        .legend-item {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 5px 10px;
            border-radius: 6px;
            background: #f8f9fa;
            font-size: 13px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .legend-item:hover {
            background: #e9ecef;
            transform: translateY(-1px);
        }

        .legend-color {
            width: 16px;
            height: 16px;
            border-radius: 3px;
        }

        .controls {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 25px;
            flex-wrap: wrap;
        }

        .btn {
            padding: 10px 20px;
            border: none;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
        }

        /* .btn-primary {
            background: #007bff;
            color: white;
        }

        .btn-primary:hover {
            background: #0056b3;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
        }

        .btn-secondary {
            background: #6c757d;
            color: white;
        }

        .btn-secondary:hover {
            background: #545b62;
            transform: translateY(-2px);
        }

        .btn-success {
            background: #28a745;
            color: white;
        }

        .btn-success:hover {
            background: #1e7e34;
            transform: translateY(-2px);
        } */

        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 20px;
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .data-table th,
        .data-table td {
            padding: 12px 15px;
            text-align: left;
            border-bottom: 1px solid #e9ecef;
        }

        .data-table th {
            background: #f8f9fa;
            font-weight: 600;
            color: #495057;
            font-size: 14px;
        }

        .data-table tr:hover {
            background: #f8f9fa;
        }

        .data-table td {
            font-size: 13px;
        }

        .accordion {
            margin-top: 20px;
            transition: all 0.3s ease;

        }

        .accordion-toggle {
            width: 175px;
            padding: 15px 20px;
            background: #f8f9fa;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
            color: #4A90E2;
        }

        .accordion-toggle:hover {
            background: #e9ecef;
        }

        .accordion-content {
            display: none;
            padding: 20px;
            background: white;
            border-radius: 0 0 8px 8px;
            animation: slideDown .3s ease;
            transition: all 0.3s ease;
        }

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

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            animation: fadeIn 0.3s ease;
        }

        .modal.show {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .modal-content {
            background: white;
            padding: 30px;
            border-radius: 12px;
            width: 90%;
            max-height: 80vh;
            overflow-y: auto;
            position: relative;
            animation: slideUp 0.3s ease;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        @keyframes slideUp {
            from {
                transform: translateY(30px);
                opacity: 0;
            }

            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 2px solid #e9ecef;
        }

        .modal-title {
            font-size: 22px;
            font-weight: 400;
            color: #333;
        }

        .close {
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
            color: #aaa;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .close:hover {
            color: #000;
            background: #f8f9fa;
        }

        .legend-modal-content {
            display: grid;
            gap: 15px;
        }

        .legend-detail {
            display: flex;
            align-items: start;
            gap: 15px;

        }

        .legend-detail.red {
            border-color: #dc3545;
            background: #fff5f5;
        }

        .legend-detail.orange {
            border-color: #fd7e14;
            background: #fff8f0;
        }

        .legend-detail.yellow {
            border-color: #ffc107;
            background: #fffbf0;
        }

        .legend-detail.blue {
            border-color: #007bff;
            background: #f0f8ff;
        }

        .legend-detail.gray {
            border-color: #6c757d;
            background: #f8f9fa;
        }

        .legend-icon {
            width: 20px;
            height: 20px;
            border-radius: 4px;
            padding:12px;
        }

        .bpa-card {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 25px;
            border-radius: 12px;
            margin-top: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .bpa-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
        }

        .bpa-title {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .bpa-description {
            opacity: 0.9;
            line-height: 1.5;
        }

        @media (max-width: 768px) {
            .container {
                padding: 15px;
            }

            .chart {
                height: 250px;
                overflow-x: auto;
            }

            .chart-section {
                margin: 0 10px;
            }

            .bar {
                width: 45px;
            }

            .controls {
                flex-direction: column;
                align-items: center;
            }

            .legend {
                flex-direction: column;
                align-items: center;
            }

            .data-table {
                font-size: 12px;
            }

            .data-table th,
            .data-table td {
                padding: 8px 10px;
            }
            .card-header{
                padding: 10px;
                
            }
            .card-title{
                font-size: 18px;
            }
            
        }
