* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
             font-family: "Inter", sans-serif;
            background: linear-gradient(135deg, #1e3a8a, #1e40af, #3b82f6);
            min-height: 100vh;
            color: #1f2937;
        }

        /* Header Style dengan Logo Polri dan garis */
        .top-header {
            background: linear-gradient(135deg, #f8fafc, #e2e8f0);
            padding: 10px 0;
            border-bottom: 2px solid #cbd5e1;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        .top-header-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-section {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .logo-polri {
            width: 65px;
            height: 65px;
            object-fit: contain;
        }

        .logo-divider {
            width: 2px;
            height: 50px;
            background: linear-gradient(to bottom, #1e40af, #3b82f6);
            margin: 0 5px;
        }

        .logo-text {
            color: #1f2937;
            font-size: 11px;
            line-height: 1.3;
            font-weight: 500;
        }

        .logo-text .main-title {
            font-weight: bold;
            font-size: 15px;
            margin-bottom: 3px;
            color: #1e40af;
            letter-spacing: 0.5px;
        }

        .logo-text .sub-title {
            font-size: 10px;
            color: #4b5563;
            font-weight: 400;
        }

        .top-nav {
            display: flex;
            gap: 30px;
            font-size: 13px;
        }

        .top-nav a {
            color: #374151;
            text-decoration: none;
            font-weight: 600;
            padding: 8px 0;
            border-bottom: 3px solid transparent;
            transition: all 0.3s ease;
            letter-spacing: 0.3px;
        }

        .top-nav a:hover,
        .top-nav a.active {
            color: #1e40af;
            border-bottom-color: #3b82f6;
        }

        /* Main Header */
        .main-header {
            background: linear-gradient(135deg, #1e40af, #3b82f6, #60a5fa);
            color: white;
            padding: 25px 0;
            text-align: center;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }

        .main-header h2 {
            font-size: 26px;
            font-weight: 700;
            margin-bottom: 5px;
            letter-spacing: 0.5px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }

        /* Main Content Layout */
        .main-content {
            max-width: 1200px;
            margin: 25px auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 1fr 280px;
            gap: 25px;
        }

        /* Map Section */
        .map-section {
            background: linear-gradient(135deg, #ffffff, #f8fafc);
            border-radius: 12px;
            height: 420px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            border: 1px solid #e2e8f0;
        }

        .map-controls {
            background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
            padding: 15px 20px;
            border-bottom: 2px solid #cbd5e1;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .map-buttons {
            display: flex;
            gap: 10px;
        }

        .map-btn {
            background: linear-gradient(135deg, #64748b, #475569);
            color: white;
            border: none;
            padding: 8px 12px;
            border-radius: 6px;
            font-size: 11px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        .map-btn:hover {
            background: linear-gradient(135deg, #475569, #334155);
            transform: translateY(-1px);
        }

        .map-btn.active {
            background: linear-gradient(135deg, #1e40af, #3b82f6);
        }

        #map {
            height: 420px;
            width: 100%;
        }

        /* Sidebar */
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .commodity-control {
            height: 80px;
            background: linear-gradient(135deg, #ffffff, #f8fafc);
            border-radius: 12px;
            padding: 10px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            border: 1px solid #e2e8f0;
        }

        .commodity-control label {
            display: block;
            color: #1e40af;
            font-size: 12px;
            font-weight: 700;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .commodity-control select {
            width: 100%;
            padding: 10px 12px;
            border: 2px solid #cbd5e1;
            border-radius: 8px;
            font-size: 12px;
            font-weight: 500;
            background: white;
            color: #374151;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .commodity-control select:focus {
            outline: none;
            border-color: #3b82f6;
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
        }

        .sidebar-panel {
            background: linear-gradient(135deg, #ffffff, #f8fafc);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            border: 1px solid #e2e8f0;
        }

        .sidebar-header {
            background: linear-gradient(135deg, #1e40af, #3b82f6);
            color: white;
            padding: 15px 18px;
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 0.3px;
        }

        .price-list {
            max-height: 350px;
            overflow-y: auto;
        }

        .price-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 18px;
            border-bottom: 1px solid #f1f5f9;
            font-size: 12px;
            transition: all 0.2s ease;
        }

        .price-row:last-child {
            border-bottom: none;
        }

        .price-row:hover {
            background: linear-gradient(135deg, #f8fafc, #f1f5f9);
        }

        .location-name {
            font-weight: 600;
            color: #374151;
        }

        .price-value {
            font-weight: 700;
            color: #1e40af;
        }

        /* Charts Section */
        .charts-section {
            max-width: 1200px;
            margin: 25px auto;
            padding: 0 20px;
            background: linear-gradient(135deg, #1e3a8a, #1e40af, #3b82f6);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            border: 1px solid rgba(255,255,255,0.1);
        }

        .charts-header {
            background: linear-gradient(135deg, rgba(30, 64, 175, 0.8), rgba(59, 130, 246, 0.6));
            color: white;
            padding: 12px 15px;
            text-align: center;
            border-bottom: 2px solid rgba(255,255,255,0.1);
        }

        .charts-header h3 {
            font-size: 18px;
            font-weight: 700;
            letter-spacing: 0.5px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }

        .charts-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
            padding: 25px;
            background: linear-gradient(135deg, #1e3a8a, #1e40af, #3b82f6);
        }
        @media (max-width: 1024px) {
          .charts-grid {
            grid-template-columns: repeat(3, 1fr);
          }
        }
        @media (max-width: 768px) {
          .charts-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            padding: 20px;
          }
        }
        @media (max-width: 480px) {
          .charts-grid {
            grid-template-columns: 1fr;
            gap: 10px;
          }
        }

        .chart-item {
            background: linear-gradient(135deg, #1e3a8a, #1e40af);
            color: white;
            padding: 18px;
            text-align: center;
            position: relative;
            height: 250px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
            border: 1px solid rgba(255,255,255,0.1);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .chart-item.custom-card {
            background: linear-gradient(135deg, #23577a 80%, #1e3a5c 100%);
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            padding: 10px 10px 16px 10px;
            margin: 8px;
            min-width: 220px;
            max-width: 100%;
            min-height: 170px;
            flex: 1 1 220px;
            display: flex;
            flex-direction: column;
            align-items: stretch;
            justify-content: flex-start;
            position: relative;
        }

        .chart-title {
            font-size: 11px;
            font-weight: 700;
            margin-bottom: 12px;
            color: white;
            text-align: center;
            line-height: 1.3;
            letter-spacing: 0.3px;
        }

        .chart-title.custom-title {
            background: rgba(30, 58, 92, 0.95);
            color: #fff;
            font-size: 15px;
            font-weight: 600;
            text-align: center;
            border-radius: 6px 6px 0 0;
            padding: 6px 0 4px 0;
            margin-bottom: 4px;
        }

        .chart-row {
            display: flex;
            flex-direction: row;
            align-items: flex-start;
            justify-content: space-between;
            gap: 8px;
            margin-bottom: 6px;
        }

        .chart-canvas.chart-canvas-small {
            width: 80px !important;
            height: 60px !important;
            min-width: 80px;
            min-height: 60px;
            margin-top: 4px;
            margin-left: 2px;
            background: transparent;
        }

        .chart-price-block {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            justify-content: flex-start;
            min-width: 110px;
        }

        .chart-price-large {
            font-size: 24px;
            font-weight: 800;
            color: white;
            margin: 12px 0 6px 0;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }

        .chart-price-large.custom-price {
            font-size: 26px;
            font-weight: bold;
            color: #fff;
            margin-bottom: 0px;
            margin-top: 2px;
        }

        .chart-unit {
            font-size: 10px;
            color: rgba(255,255,255,0.8);
            margin-bottom: 12px;
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        .chart-unit.custom-unit {
            font-size: 12px;
            color: #e0e0e0;
            margin-top: 2px;
            margin-bottom: 0;
        }

        .chart-change-indicator {
            padding: 5px 10px;
            border-radius: 6px;
            font-size: 10px;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 4px;
            margin-top: 6px;
            letter-spacing: 0.3px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }

        .chart-change-indicator.custom-change {
            margin-top: 10px;
            display: flex;
            align-items: center;
            justify-content: flex-start;
        }

        .chart-change-indicator.up {
            background: linear-gradient(135deg, #dc2626, #ef4444);
            color: white;
        }

        .chart-change-indicator.down {
            background: linear-gradient(135deg, #16a34a, #22c55e);
            color: white;
        }

        .chart-change-indicator.stable {
            background: linear-gradient(135deg, #64748b, #94a3b8);
            color: white;
        }

        .change-box {
            display: inline-flex;
            align-items: center;
            font-size: 15px;
            font-weight: 600;
            border-radius: 5px;
            padding: 2px 10px 2px 8px;
            margin-left: 0;
            margin-top: 0;
            box-shadow: 0 1px 4px rgba(0,0,0,0.04);
        }

        .change-box.naik {
            background: #ffeaea;
            color: #e53935;
            border: 1.5px solid #e53935;
        }

        .change-box.turun {
            background: #eafff1;
            color: #16a34a;
            border: 1.5px solid #16a34a;
        }

        .change-box.tetap {
            background: #f3f3f3;
            color: #888;
            border: 1.5px solid #bbb;
        }

        .arrow-up {
            color: #e53935;
            font-size: 17px;
            margin-right: 4px;
        }

        .arrow-down {
            color: #16a34a;
            font-size: 17px;
            margin-right: 4px;
        }

        .arrow-stay {
            color: #888;
            font-size: 17px;
            margin-right: 4px;
        }

        /* Footer */
        .footer {
            /*background: linear-gradient(135deg, #1e3a8a, #1e40af);*/
            background-color: #00008B;
            color: white;
            padding: 20px 0;
            margin-top: 40px;
            text-align: center;
            box-shadow: 0 -4px 6px rgba(0,0,0,0.1);
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .footer-title {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 8px;
            letter-spacing: 0.5px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }

        .footer-subtitle {
            font-size: 14px;
            color: rgba(255,255,255,0.8);
            font-weight: 500;
            letter-spacing: 0.3px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .main-content {
                grid-template-columns: 1fr;
                padding: 0 15px;
            }
            
            .charts-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
                padding: 20px;
            }
            
            .top-nav {
                display: none;
            }
            
            #map {
                height: 400px;
            }
            
            .charts-section {
                padding: 0 15px;
            }

            .chart-item {
                min-height: 200px;
                padding: 15px;
            }

            .chart-price-large {
                font-size: 20px;
            }

            .modal-content {
                width: 95%;
                margin: 10px;
            }
        }

        @media (max-width: 480px) {
            .charts-grid {
                grid-template-columns: 1fr;
                gap: 10px;
            }
        }

        @media (max-width: 700px) {
            .chart-item.custom-card {
                min-width: 98vw;
                max-width: 100vw;
                margin: 6px 0;
            }
            .chart-row {
                flex-direction: column;
                align-items: center;
            }
            .chart-price-block {
                align-items: center;
                min-width: unset;
            }
        }

        /* Scrollbar Styling */
        .price-list::-webkit-scrollbar,
        .modal-body::-webkit-scrollbar {
            width: 8px;
        }

        .price-list::-webkit-scrollbar-track,
        .modal-body::-webkit-scrollbar-track {
            background: #f1f5f9;
            border-radius: 4px;
        }

        .price-list::-webkit-scrollbar-thumb,
        .modal-body::-webkit-scrollbar-thumb {
            background: linear-gradient(135deg, #cbd5e1, #94a3b8);
            border-radius: 4px;
        }

        .price-list::-webkit-scrollbar-thumb:hover,
        .modal-body::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(135deg, #94a3b8, #64748b);
        }

        .charts-grid a {
          display: block;
          width: auto;
          margin: 0;
        }
        .chart-item {
            background: linear-gradient(135deg, #1e3a8a, #1e40af);
            color: white;
            padding: 18px;
            text-align: center;
            position: relative;
            height: 250px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
            border: 1px solid rgba(255,255,255,0.1);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .chart-item.custom-card {
            background: linear-gradient(135deg, #23577a 80%, #1e3a5c 100%);
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            padding: 10px 10px 16px 10px;
            margin: 8px;
            min-width: 220px;
            max-width: 100%;
            min-height: 170px;
            flex: 1 1 220px;
            display: flex;
            flex-direction: column;
            align-items: stretch;
            justify-content: flex-start;
            position: relative;
        }

        .chart-title {
            font-size: 11px;
            font-weight: 700;
            margin-bottom: 12px;
            color: white;
            text-align: center;
            line-height: 1.3;
            letter-spacing: 0.3px;
        }

        .chart-title.custom-title {
            background: rgba(30, 58, 92, 0.95);
            color: #fff;
            font-size: 15px;
            font-weight: 600;
            text-align: center;
            border-radius: 6px 6px 0 0;
            padding: 6px 0 4px 0;
            margin-bottom: 4px;
        }

        .chart-row {
            display: flex;
            flex-direction: row;
            align-items: flex-start;
            justify-content: space-between;
            gap: 8px;
            margin-bottom: 6px;
        }

        .chart-canvas.chart-canvas-small {
            width: 80px !important;
            height: 60px !important;
            min-width: 80px;
            min-height: 60px;
            margin-top: 4px;
            margin-left: 2px;
            background: transparent;
        }

        .chart-price-block {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            justify-content: flex-start;
            min-width: 110px;
        }

        .chart-price-large {
            font-size: 24px;
            font-weight: 800;
            color: white;
            margin: 12px 0 6px 0;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }

        .chart-price-large.custom-price {
            font-size: 26px;
            font-weight: bold;
            color: #fff;
            margin-bottom: 0px;
            margin-top: 2px;
        }

        .chart-unit {
            font-size: 10px;
            color: rgba(255,255,255,0.8);
            margin-bottom: 12px;
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        .chart-unit.custom-unit {
            font-size: 12px;
            color: #e0e0e0;
            margin-top: 2px;
            margin-bottom: 0;
        }

        .chart-change-indicator {
            padding: 5px 10px;
            border-radius: 6px;
            font-size: 10px;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 4px;
            margin-top: 6px;
            letter-spacing: 0.3px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }

        .chart-change-indicator.custom-change {
            margin-top: 10px;
            display: flex;
            align-items: center;
            justify-content: flex-start;
        }

        .chart-change-indicator.up {
            background: linear-gradient(135deg, #dc2626, #ef4444);
            color: white;
        }

        .chart-change-indicator.down {
            background: linear-gradient(135deg, #16a34a, #22c55e);
            color: white;
        }

        .chart-change-indicator.stable {
            background: linear-gradient(135deg, #64748b, #94a3b8);
            color: white;
        }

        .change-box {
            display: inline-flex;
            align-items: center;
            font-size: 15px;
            font-weight: 600;
            border-radius: 5px;
            padding: 2px 10px 2px 8px;
            margin-left: 0;
            margin-top: 0;
            box-shadow: 0 1px 4px rgba(0,0,0,0.04);
        }

        .change-box.naik {
            background: #ffeaea;
            color: #e53935;
            border: 1.5px solid #e53935;
        }

        .change-box.turun {
            background: #eafff1;
            color: #16a34a;
            border: 1.5px solid #16a34a;
        }

        .change-box.tetap {
            background: #f3f3f3;
            color: #888;
            border: 1.5px solid #bbb;
        }

        .arrow-up {
            color: #e53935;
            font-size: 17px;
            margin-right: 4px;
        }

        .arrow-down {
            color: #16a34a;
            font-size: 17px;
            margin-right: 4px;
        }

        .arrow-stay {
            color: #888;
            font-size: 17px;
            margin-right: 4px;
        }

        /* Footer */
        .footer {
            /*background: linear-gradient(135deg, #1e3a8a, #1e40af);*/
            background-color: #00008B;
            color: white;
            padding: 20px 0;
            margin-top: 40px;
            text-align: center;
            box-shadow: 0 -4px 6px rgba(0,0,0,0.1);
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .footer-title {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 8px;
            letter-spacing: 0.5px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }

        .footer-subtitle {
            font-size: 14px;
            color: rgba(255,255,255,0.8);
            font-weight: 500;
            letter-spacing: 0.3px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .main-content {
                grid-template-columns: 1fr;
                padding: 0 15px;
            }
            
            .charts-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
                padding: 20px;
            }
            
            .top-nav {
                display: none;
            }
            
            #map {
                height: 400px;
            }
            
            .charts-section {
                padding: 0 15px;
            }

            .chart-item {
                min-height: 200px;
                padding: 15px;
            }

            .chart-price-large {
                font-size: 20px;
            }

            .modal-content {
                width: 95%;
                margin: 10px;
            }
        }

        @media (max-width: 480px) {
            .charts-grid {
                grid-template-columns: 1fr;
                gap: 10px;
            }
        }

        @media (max-width: 700px) {
            .chart-item.custom-card {
                min-width: 98vw;
                max-width: 100vw;
                margin: 6px 0;
            }
            .chart-row {
                flex-direction: column;
                align-items: center;
            }
            .chart-price-block {
                align-items: center;
                min-width: unset;
            }
        }

        /* Scrollbar Styling */
        .price-list::-webkit-scrollbar,
        .modal-body::-webkit-scrollbar {
            width: 8px;
        }

        .price-list::-webkit-scrollbar-track,
        .modal-body::-webkit-scrollbar-track {
            background: #f1f5f9;
            border-radius: 4px;
        }

        .price-list::-webkit-scrollbar-thumb,
        .modal-body::-webkit-scrollbar-thumb {
            background: linear-gradient(135deg, #cbd5e1, #94a3b8);
            border-radius: 4px;
        }

        .price-list::-webkit-scrollbar-thumb:hover,
        .modal-body::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(135deg, #94a3b8, #64748b);
        }

        .charts-grid a {
          display: block;
          width: auto;
          margin: 0;
        }
        .chart-item {
            background: linear-gradient(135deg, #1e3a8a, #1e40af);
            color: white;
            padding: 18px;
            text-align: center;
            position: relative;
            height: 250px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
            border: 1px solid rgba(255,255,255,0.1);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .chart-item.custom-card {
            background: linear-gradient(135deg, #23577a 80%, #1e3a5c 100%);
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            padding: 10px 10px 16px 10px;
            margin: 8px;
            min-width: 220px;
            max-width: 100%;
            min-height: 170px;
            flex: 1 1 220px;
            display: flex;
            flex-direction: column;
            align-items: stretch;
            justify-content: flex-start;
            position: relative;
        }

        .chart-title {
            font-size: 11px;
            font-weight: 700;
            margin-bottom: 12px;
            color: white;
            text-align: center;
            line-height: 1.3;
            letter-spacing: 0.3px;
        }

        .chart-title.custom-title {
            background: rgba(30, 58, 92, 0.95);
            color: #fff;
            font-size: 15px;
            font-weight: 600;
            text-align: center;
            border-radius: 6px 6px 0 0;
            padding: 6px 0 4px 0;
            margin-bottom: 4px;
        }

        .chart-row {
            display: flex;
            flex-direction: row;
            align-items: flex-start;
            justify-content: space-between;
            gap: 8px;
            margin-bottom: 6px;
        }

        .chart-canvas.chart-canvas-small {
            width: 80px !important;
            height: 60px !important;
            min-width: 80px;
            min-height: 60px;
            margin-top: 4px;
            margin-left: 2px;
            background: transparent;
        }

        .chart-price-block {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            justify-content: flex-start;
            min-width: 110px;
        }

        .chart-price-large {
            font-size: 24px;
            font-weight: 800;
            color: white;
            margin: 12px 0 6px 0;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }

        .chart-price-large.custom-price {
            font-size: 26px;
            font-weight: bold;
            color: #fff;
            margin-bottom: 0px;
            margin-top: 2px;
        }

        .chart-unit {
            font-size: 10px;
            color: rgba(255,255,255,0.8);
            margin-bottom: 12px;
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        .chart-unit.custom-unit {
            font-size: 12px;
            color: #e0e0e0;
            margin-top: 2px;
            margin-bottom: 0;
        }

        .chart-change-indicator {
            padding: 5px 10px;
            border-radius: 6px;
            font-size: 10px;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 4px;
            margin-top: 6px;
            letter-spacing: 0.3px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }

        .chart-change-indicator.custom-change {
            margin-top: 10px;
            display: flex;
            align-items: center;
            justify-content: flex-start;
        }

        .chart-change-indicator.up {
            background: linear-gradient(135deg, #dc2626, #ef4444);
            color: white;
        }

        .chart-change-indicator.down {
            background: linear-gradient(135deg, #16a34a, #22c55e);
            color: white;
        }

        .chart-change-indicator.stable {
            background: linear-gradient(135deg, #64748b, #94a3b8);
            color: white;
        }

        .change-box {
            display: inline-flex;
            align-items: center;
            font-size: 15px;
            font-weight: 600;
            border-radius: 5px;
            padding: 2px 10px 2px 8px;
            margin-left: 0;
            margin-top: 0;
            box-shadow: 0 1px 4px rgba(0,0,0,0.04);
        }

        .change-box.naik {
            background: #ffeaea;
            color: #e53935;
            border: 1.5px solid #e53935;
        }

        .change-box.turun {
            background: #eafff1;
            color: #16a34a;
            border: 1.5px solid #16a34a;
        }

        .change-box.tetap {
            background: #f3f3f3;
            color: #888;
            border: 1.5px solid #bbb;
        }

        .arrow-up {
            color: #e53935;
            font-size: 17px;
            margin-right: 4px;
        }

        .arrow-down {
            color: #16a34a;
            font-size: 17px;
            margin-right: 4px;
        }

        .arrow-stay {
            color: #888;
            font-size: 17px;
            margin-right: 4px;
        }

        /* Footer */
        .footer {
            /*background: linear-gradient(135deg, #1e3a8a, #1e40af);*/
            background-color: #00008B;
            color: white;
            padding: 20px 0;
            margin-top: 40px;
            text-align: center;
            box-shadow: 0 -4px 6px rgba(0,0,0,0.1);
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .footer-title {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 8px;
            letter-spacing: 0.5px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }

        .footer-subtitle {
            font-size: 14px;
            color: rgba(255,255,255,0.8);
            font-weight: 500;
            letter-spacing: 0.3px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .main-content {
                grid-template-columns: 1fr;
                padding: 0 15px;
            }
            
            .charts-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
                padding: 20px;
            }
            
            .top-nav {
                display: none;
            }
            
            #map {
                height: 400px;
            }
            
            .charts-section {
                padding: 0 15px;
            }

            .chart-item {
                min-height: 200px;
                padding: 15px;
            }

            .chart-price-large {
                font-size: 20px;
            }

            .modal-content {
                width: 95%;
                margin: 10px;
            }
        }

        @media (max-width: 480px) {
            .charts-grid {
                grid-template-columns: 1fr;
                gap: 10px;
            }
        }

        @media (max-width: 700px) {
            .chart-item.custom-card {
                min-width: 98vw;
                max-width: 100vw;
                margin: 6px 0;
            }
            .chart-row {
                flex-direction: column;
                align-items: center;
            }
            .chart-price-block {
                align-items: center;
                min-width: unset;
            }
        }

        /* Scrollbar Styling */
        .price-list::-webkit-scrollbar,
        .modal-body::-webkit-scrollbar {
            width: 8px;
        }

        .price-list::-webkit-scrollbar-track,
        .modal-body::-webkit-scrollbar-track {
            background: #f1f5f9;
            border-radius: 4px;
        }

        .price-list::-webkit-scrollbar-thumb,
        .modal-body::-webkit-scrollbar-thumb {
            background: linear-gradient(135deg, #cbd5e1, #94a3b8);
            border-radius: 4px;
        }

        .price-list::-webkit-scrollbar-thumb:hover,
        .modal-body::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(135deg, #94a3b8, #64748b);
        }

        .charts-grid a {
          display: block;
          width: auto;
          margin: 0;
        }
        .chart-item {
            background: linear-gradient(135deg, #1e3a8a, #1e40af);
            color: white;
            padding: 18px;
            text-align: center;
            position: relative;
            height: 250px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
            border: 1px solid rgba(255,255,255,0.1);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .chart-item.custom-card {
            background: linear-gradient(135deg, #23577a 80%, #1e3a5c 100%);
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            padding: 10px 10px 16px 10px;
            margin: 8px;
            min-width: 220px;
            max-width: 100%;
            min-height: 170px;
            flex: 1 1 220px;
            display: flex;
            flex-direction: column;
            align-items: stretch;
            justify-content: flex-start;
            position: relative;
        }

        .chart-title {
            font-size: 11px;
            font-weight: 700;
            margin-bottom: 12px;
            color: white;
            text-align: center;
            line-height: 1.3;
            letter-spacing: 0.3px;
        }

        .chart-title.custom-title {
            background: rgba(30, 58, 92, 0.95);
            color: #fff;
            font-size: 15px;
            font-weight: 600;
            text-align: center;
            border-radius: 6px 6px 0 0;
            padding: 6px 0 4px 0;
            margin-bottom: 4px;
        }

        .chart-row {
            display: flex;
            flex-direction: row;
            align-items: flex-start;
            justify-content: space-between;
            gap: 8px;
            margin-bottom: 6px;
        }

        .chart-canvas.chart-canvas-small {
            width: 80px !important;
            height: 60px !important;
            min-width: 80px;
            min-height: 60px;
            margin-top: 4px;
            margin-left: 2px;
            background: transparent;
        }

        .chart-price-block {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            justify-content: flex-start;
            min-width: 110px;
        }

        .chart-price-large {
            font-size: 24px;
            font-weight: 800;
            color: white;
            margin: 12px 0 6px 0;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }

        .chart-price-large.custom-price {
            font-size: 26px;
            font-weight: bold;
            color: #fff;
            margin-bottom: 0px;
            margin-top: 2px;
        }

        .chart-unit {
            font-size: 10px;
            color: rgba(255,255,255,0.8);
            margin-bottom: 12px;
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        .chart-unit.custom-unit {
            font-size: 12px;
            color: #e0e0e0;
            margin-top: 2px;
            margin-bottom: 0;
        }

        .chart-change-indicator {
            padding: 5px 10px;
            border-radius: 6px;
            font-size: 10px;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 4px;
            margin-top: 6px;
            letter-spacing: 0.3px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }

        .chart-change-indicator.custom-change {
            margin-top: 10px;
            display: flex;
            align-items: center;
            justify-content: flex-start;
        }

        .chart-change-indicator.up {
            background: linear-gradient(135deg, #dc2626, #ef4444);
            color: white;
        }

        .chart-change-indicator.down {
            background: linear-gradient(135deg, #16a34a, #22c55e);
            color: white;
        }

        .chart-change-indicator.stable {
            background: linear-gradient(135deg, #64748b, #94a3b8);
            color: white;
        }

        .change-box {
            display: inline-flex;
            align-items: center;
            font-size: 15px;
            font-weight: 600;
            border-radius: 5px;
            padding: 2px 10px 2px 8px;
            margin-left: 0;
            margin-top: 0;
            box-shadow: 0 1px 4px rgba(0,0,0,0.04);
        }

        .change-box.naik {
            background: #ffeaea;
            color: #e53935;
            border: 1.5px solid #e53935;
        }

        .change-box.turun {
            background: #eafff1;
            color: #16a34a;
            border: 1.5px solid #16a34a;
        }

        .change-box.tetap {
            background: #f3f3f3;
            color: #888;
            border: 1.5px solid #bbb;
        }

        .arrow-up {
            color: #e53935;
            font-size: 17px;
            margin-right: 4px;
        }

        .arrow-down {
            color: #16a34a;
            font-size: 17px;
            margin-right: 4px;
        }

        .arrow-stay {
            color: #888;
            font-size: 17px;
            margin-right: 4px;
        }

        /* Footer */
        .footer {
            /*background: linear-gradient(135deg, #1e3a8a, #1e40af);*/
            background-color: #00008B;
            color: white;
            padding: 20px 0;
            margin-top: 40px;
            text-align: center;
            box-shadow: 0 -4px 6px rgba(0,0,0,0.1);
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .footer-title {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 8px;
            letter-spacing: 0.5px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }

        .footer-subtitle {
            font-size: 14px;
            color: rgba(255,255,255,0.8);
            font-weight: 500;
            letter-spacing: 0.3px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .main-content {
                grid-template-columns: 1fr;
                padding: 0 15px;
            }
            
            .charts-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
                padding: 20px;
            }
            
            .top-nav {
                display: none;
            }
            
            #map {
                height: 400px;
            }
            
            .charts-section {
                padding: 0 15px;
            }

            .chart-item {
                min-height: 200px;
                padding: 15px;
            }

            .chart-price-large {
                font-size: 20px;
            }

            .modal-content {
                width: 95%;
                margin: 10px;
            }
        }

        @media (max-width: 480px) {
            .charts-grid {
                grid-template-columns: 1fr;
                gap: 10px;
            }
        }

        @media (max-width: 700px) {
            .chart-item.custom-card {
                min-width: 98vw;
                max-width: 100vw;
                margin: 6px 0;
            }
            .chart-row {
                flex-direction: column;
                align-items: center;
            }
            .chart-price-block {
                align-items: center;
                min-width: unset;
            }
        }

        /* Scrollbar Styling */
        .price-list::-webkit-scrollbar,
        .modal-body::-webkit-scrollbar {
            width: 8px;
        }

        .price-list::-webkit-scrollbar-track,
        .modal-body::-webkit-scrollbar-track {
            background: #f1f5f9;
            border-radius: 4px;
        }

        .price-list::-webkit-scrollbar-thumb,
        .modal-body::-webkit-scrollbar-thumb {
            background: linear-gradient(135deg, #cbd5e1, #94a3b8);
            border-radius: 4px;
        }

        .price-list::-webkit-scrollbar-thumb:hover,
        .modal-body::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(135deg, #94a3b8, #64748b);
        }

        .charts-grid a {
          display: block;
          width: auto;
          margin: 0;
        }
        .chart-item {
            background: linear-gradient(135deg, #1e3a8a, #1e40af);
            color: white;
            padding: 18px;
            text-align: center;
            position: relative;
            height: 250px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
            border: 1px solid rgba(255,255,255,0.1);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .chart-item.custom-card {
            background: linear-gradient(135deg, #23577a 80%, #1e3a5c 100%);
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            padding: 10px 10px 16px 10px;
            margin: 8px;
            min-width: 220px;
            max-width: 100%;
            min-height: 170px;
            flex: 1 1 220px;
            display: flex;
            flex-direction: column;
            align-items: stretch;
            justify-content: flex-start;
            position: relative;
        }

        .chart-title {
            font-size: 11px;
            font-weight: 700;
            margin-bottom: 12px;
            color: white;
            text-align: center;
            line-height: 1.3;
            letter-spacing: 0.3px;
        }

        .chart-title.custom-title {
            background: rgba(30, 58, 92, 0.95);
            color: #fff;
            font-size: 15px;
            font-weight: 600;
            text-align: center;
            border-radius: 6px 6px 0 0;
            padding: 6px 0 4px 0;
            margin-bottom: 4px;
        }

        .chart-row {
            display: flex;
            flex-direction: row;
            align-items: flex-start;
            justify-content: space-between;
            gap: 8px;
            margin-bottom: 6px;
        }

        .chart-canvas.chart-canvas-small {
            width: 80px !important;
            height: 60px !important;
            min-width: 80px;
            min-height: 60px;
            margin-top: 4px;
            margin-left: 2px;
            background: transparent;
        }

        .chart-price-block {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            justify-content: flex-start;
            min-width: 110px;
        }

        .chart-price-large {
            font-size: 24px;
            font-weight: 800;
            color: white;
            margin: 12px 0 6px 0;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }

        .chart-price-large.custom-price {
            font-size: 26px;
            font-weight: bold;
            color: #fff;
            margin-bottom: 0px;
            margin-top: 2px;
        }

        .chart-unit {
            font-size: 10px;
            color: rgba(255,255,255,0.8);
            margin-bottom: 12px;
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        .chart-unit.custom-unit {
            font-size: 12px;
            color: #e0e0e0;
            margin-top: 2px;
            margin-bottom: 0;
        }

        .chart-change-indicator {
            padding: 5px 10px;
            border-radius: 6px;
            font-size: 10px;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 4px;
            margin-top: 6px;
            letter-spacing: 0.3px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }

        .chart-change-indicator.custom-change {
            margin-top: 10px;
            display: flex;
            align-items: center;
            justify-content: flex-start;
        }

        .chart-change-indicator.up {
            background: linear-gradient(135deg, #dc2626, #ef4444);
            color: white;
        }

        .chart-change-indicator.down {
            background: linear-gradient(135deg, #16a34a, #22c55e);
            color: white;
        }

        .chart-change-indicator.stable {
            background: linear-gradient(135deg, #64748b, #94a3b8);
            color: white;
        }

        .change-box {
            display: inline-flex;
            align-items: center;
            font-size: 15px;
            font-weight: 600;
            border-radius: 5px;
            padding: 2px 10px 2px 8px;
            margin-left: 0;
            margin-top: 0;
            box-shadow: 0 1px 4px rgba(0,0,0,0.04);
        }

        .change-box.naik {
            background: #ffeaea;
            color: #e53935;
            border: 1.5px solid #e53935;
        }

        .change-box.turun {
            background: #eafff1;
            color: #16a34a;
            border: 1.5px solid #16a34a;
        }

        .change-box.tetap {
            background: #f3f3f3;
            color: #888;
            border: 1.5px solid #bbb;
        }

        .arrow-up {
            color: #e53935;
            font-size: 17px;
            margin-right: 4px;
        }

        .arrow-down {
            color: #16a34a;
            font-size: 17px;
            margin-right: 4px;
        }

        .arrow-stay {
            color: #888;
            font-size: 17px;
            margin-right: 4px;
        }

        /* Footer */
        .footer {
            /*background: linear-gradient(135deg, #1e3a8a, #1e40af);*/
            background-color: #00008B;
            color: white;
            padding: 20px 0;
            margin-top: 40px;
            text-align: center;
            box-shadow: 0 -4px 6px rgba(0,0,0,0.1);
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .footer-title {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 8px;
            letter-spacing: 0.5px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }

        .footer-subtitle {
            font-size: 14px;
            color: rgba(255,255,255,0.8);
            font-weight: 500;
            letter-spacing: 0.3px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .main-content {
                grid-template-columns: 1fr;
                padding: 0 15px;
            }
            
            .charts-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
                padding: 20px;
            }
            
            .top-nav {
                display: none;
            }
            
            #map {
                height: 400px;
            }
            
            .charts-section {
                padding: 0 15px;
            }

            .chart-item {
                min-height: 200px;
                padding: 15px;
            }

            .chart-price-large {
                font-size: 20px;
            }

            .modal-content {
                width: 95%;
                margin: 10px;
            }
        }

        @media (max-width: 480px) {
            .charts-grid {
                grid-template-columns: 1fr;
                gap: 10px;
            }
        }

        @media (max-width: 700px) {
            .chart-item.custom-card {
                min-width: 98vw;
                max-width: 100vw;
                margin: 6px 0;
            }
            .chart-row {
                flex-direction: column;
                align-items: center;
            }
            .chart-price-block {
                align-items: center;
                min-width: unset;
            }
        }

        /* Scrollbar Styling */
        .price-list::-webkit-scrollbar,
        .modal-body::-webkit-scrollbar {
            width: 8px;
        }

        .price-list::-webkit-scrollbar-track,
        .modal-body::-webkit-scrollbar-track {
            background: #f1f5f9;
            border-radius: 4px;
        }

        .price-list::-webkit-scrollbar-thumb,
        .modal-body::-webkit-scrollbar-thumb {
            background: linear-gradient(135deg, #cbd5e1, #94a3b8);
            border-radius: 4px;
        }

        .price-list::-webkit-scrollbar-thumb:hover,
        .modal-body::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(135deg, #94a3b8, #64748b);
        }

        .charts-grid a {
          display: block;
          width: auto;
          margin: 0;
        }
        .chart-item {
            /*background: linear-gradient(135deg, #1e3a8a, #1e40af);*/
            background-color: #3b82f6;
            color: white;
            padding: 10px;
            text-align: center;
            position: relative;
            height: 230px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
            border: 1px solid rgba(255,255,255,0.1);
            cursor: pointer;
            transition: all 0.3s ease;
        }


        .chart-title {
            font-size: 11px;
            font-weight: 700;
            margin-bottom: 12px;
            color: white;
            text-align: center;
            line-height: 1.3;
            letter-spacing: 0.3px;
        }

        .chart-title.custom-title {
            background: rgba(30, 58, 92, 0.95);
            color: #fff;
            font-size: 15px;
            font-weight: 600;
            text-align: center;
            border-radius: 6px 6px 0 0;
            padding: 6px 0 4px 0;
            margin-bottom: 4px;
        }

        .chart-row {
            display: flex;
            flex-direction: row;
            align-items: flex-start;
            justify-content: space-between;
            gap: 2px;
            margin-bottom: 2px;
        }

        .chart-canvas.chart-canvas-small {
            width: 80px !important;
            height: 60px !important;
            min-width: 80px;
            min-height: 60px;
            margin-top: 4px;
            margin-left: 2px;
            background: transparent;
        }

        .chart-price-block {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            justify-content: flex-start;
            min-width: 110px;
        }

        .chart-price-large {
            font-size: 24px;
            font-weight: 800;
            color: white;
            margin: 12px 0 6px 0;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }

        .chart-price-large.custom-price {
            font-size: 26px;
            font-weight: bold;
            color: #fff;
            margin-bottom: 0px;
            margin-top: 2px;
        }

        .chart-unit {
            font-size: 10px;
            color: rgba(255,255,255,0.8);
            margin-bottom: 12px;
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        .chart-unit.custom-unit {
            font-size: 12px;
            color: #e0e0e0;
            margin-top: 2px;
            margin-bottom: 0;
        }

        .chart-change-indicator {
            padding: 5px 10px;
            border-radius: 6px;
            font-size: 10px;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 4px;
            margin-top: 6px;
            letter-spacing: 0.3px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }

        .chart-change-indicator.custom-change {
            margin-top: 10px;
            display: flex;
            align-items: center;
            justify-content: flex-start;
        }

        .chart-change-indicator.up {
            background: linear-gradient(135deg, #dc2626, #ef4444);
            color: white;
        }

        .chart-change-indicator.down {
            background: linear-gradient(135deg, #16a34a, #22c55e);
            color: white;
        }

        .chart-change-indicator.stable {
            background: linear-gradient(135deg, #64748b, #94a3b8);
            color: white;
        }

        .change-box {
            display: inline-flex;
            align-items: center;
            font-size: 15px;
            font-weight: 600;
            border-radius: 5px;
            padding: 2px 10px 2px 8px;
            margin-left: 0;
            margin-top: 0;
            box-shadow: 0 1px 4px rgba(0,0,0,0.04);
        }

        .change-box.naik {
            background: #ffeaea;
            color: #e53935;
            border: 1.5px solid #e53935;
        }

        .change-box.turun {
            background: #eafff1;
            color: #16a34a;
            border: 1.5px solid #16a34a;
        }

        .change-box.tetap {
            background: #f3f3f3;
            color: #888;
            border: 1.5px solid #bbb;
        }

        .arrow-up {
            color: #e53935;
            font-size: 17px;
            margin-right: 4px;
        }

        .arrow-down {
            color: #16a34a;
            font-size: 17px;
            margin-right: 4px;
        }

        .arrow-stay {
            color: #888;
            font-size: 17px;
            margin-right: 4px;
        }

        /* Footer */
        .footer {
            /*background: linear-gradient(135deg, #1e3a8a, #1e40af);*/
            background-color: #00008B;
            color: white;
            padding: 20px 0;
            margin-top: 40px;
            text-align: center;
            box-shadow: 0 -4px 6px rgba(0,0,0,0.1);
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .footer-title {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 8px;
            letter-spacing: 0.5px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }

        .footer-subtitle {
            font-size: 14px;
            color: rgba(255,255,255,0.8);
            font-weight: 500;
            letter-spacing: 0.3px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .main-content {
                grid-template-columns: 1fr;
                padding: 0 15px;
            }
            
            .charts-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
                padding: 20px;
            }
            
            .top-nav {
                display: none;
            }
            
            #map {
                height: 400px;
            }
            
            .charts-section {
                padding: 0 15px;
            }

            .chart-item {
                min-height: 200px;
                padding: 15px;
            }

            .chart-price-large {
                font-size: 20px;
            }

            .modal-content {
                width: 95%;
                margin: 10px;
            }
        }

        @media (max-width: 480px) {
            .charts-grid {
                grid-template-columns: 1fr;
                gap: 10px;
            }
        }

        @media (max-width: 700px) {
            .chart-item.custom-card {
                min-width: 98vw;
                max-width: 100vw;
                margin: 6px 0;
            }
            .chart-row {
                flex-direction: column;
                align-items: center;
            }
            .chart-price-block {
                align-items: center;
                min-width: unset;
            }
        }

        /* Scrollbar Styling */
        .price-list::-webkit-scrollbar,
        .modal-body::-webkit-scrollbar {
            width: 8px;
        }
