/* Container & Layout */
.container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 10px;
}

.header, .footer {
    text-align: center;
    padding: 15px 10px;
    background: linear-gradient(90deg, #b8860b, #333);
    color: #fff;
}

.header h1 {
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 1px;
}

.footer p {
    font-size: 14px;
}

/* Chart Title */
.chart-wrapper {
    background-color: #1a1a1a;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.chart-title {
    text-align: center;
    font-size: 22px;
    margin-bottom: 15px;
    color: #f5c518;
    text-transform: uppercase;
}

/* Table Styles */
.table-scroll {
    overflow-x: auto;
}

.chart-table {
    width: 100%;
    border-collapse: collapse;
    min-width: auto;
}

.chart-table th,
.chart-table td {
    padding: 1px 2px;
    border: 1px solid #555;
    text-align: center;
    font-weight: bold;
    transition: background 0.3s, color 0.3s;
}

/* Header Cells */
.chart-table th {
    background: linear-gradient(90deg, #b8860b, #333);
    color: #fff;
    text-transform: uppercase;
    position: sticky;
    top: 0;
    z-index: 2;
}

/* Day Column */
.day-cell {
    background-color: #333;
    color: #f5c518;
}

/* Number Cells */
.num-cell {
    color: #f5c518;
}

/* Empty Cells */
.empty {
    color: #666;
}

/* Hover Effects */
.chart-table tr:hover td {
    background-color: #b8860b;
    color: #0d0d0d;
}

/* Responsive */

