 /* ✅ Styling for layout */
 .container {
     display: flex;
     gap: 20px;
     margin: 20px;
     align-items: flex-start;
 }

 .chart-container {
     flex: 3;
 }

 .grid-container {
     flex: 1;
     overflow-y: auto;
     max-height: 800px;
     background: #222;
     /* ✅ Dark theme background */
     border-radius: 8px;
     padding: 10px;
 }

 table {
     width: 100%;
     border-collapse: collapse;
     color: #ddd;
     /* ✅ Light text for dark theme */
 }

 th,
 td {
     padding: 10px;
     text-align: left;
     border-bottom: 1px solid #444;
     /* ✅ Darker border */
     cursor: pointer;
 }

 th {
     background-color: #333;
     /* ✅ Dark theme-friendly header */
     color: #fff;
 }

 /* ✅ Toggle Button */
 .toggle-buttons {
     display: flex;
     justify-content: space-around;
     margin-bottom: 10px;
 }

 .toggle-btn {
     background: #444;
     color: #fff;
     border: none;
     padding: 8px 15px;
     cursor: pointer;
     border-radius: 5px;
     transition: 0.3s;
 }

 .toggle-btn:hover {
     background: #666;
 }

 /* ✅ Make the chart longer */
 .chart-wrapper {
     width: 100%;
     max-width: 1200px;
     height: 700px;
 }