/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;900&display=swap');

body {
    font-family: 'Inter', sans-serif;
}

/* Main Wrapper – Perfect for Desktop */
.main-wrapper {
    max-width: 900px;    /* 👈 Desktop par perfect size */
    margin-top: 30px;
}

/* Title */
.title-text {
    text-align: center;
    font-size: 26px;
    font-weight: 800;
    color: #333;
    margin-bottom: 20px;
}

/* Top Banner */
.top-banner {
    background: #4f46e5;
    color: white;
    padding: 18px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 30px;
}

.sub-text {
    opacity: 0.85;
    font-size: 13px;
}

.count-text {
    font-size: 34px;
    font-weight: 900;
    margin-top: 5px;
}

/* Section Title */
.section-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

/* Date line */
.date-line {
    font-size: 13px;
    color: #555;
}

.date-value {
    font-weight: 700;
    color: #059669;
}

/* Table Wrapper */
.table-wrapper {
    overflow-x: auto;
}

/* Table Styles */
.data-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 8px;
    overflow: hidden;
    font-size: 14px;
}

.data-table th {
    background: #059669;
    color: white;
    padding: 8px;
    font-weight: 700;
}

.data-table td {
    padding: 8px;
    border: 1px solid #ddd;
}

.data-table tr:nth-child(even) {
    background: #f9fafb;
}

#data-table-date-wise td:nth-child(2) {
    background: #bfdbfe;
    font-weight: 900;
}

#data-table-time-wise td:nth-child(2) {
    background: #d1fae5;
    font-weight: 900;
}

/* Chart responsive */
canvas {
    width: 100% !important;
    height: auto !important;
}
