﻿body {
    margin: 0;
}

/*Media query*/
/* Large desktop and laptops*/
@media (min-width: 1200px) {
}

/* Landscape tablets and medium desktops*/
@media (min-width: 992px) and (max-width: 1199px) {
}

/* medium tablets and medium laptop*/
@media (min-width: 768px) and (max-width: 991px) {
}

/* portrait tablets and small desktops*/
@media (max-width: 767px) {
}

/* Mobile and small Phones*/
@media (max-width: 480px) {
}
/*Media query*/

.dashboard-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    overflow-x: auto;
    margin-bottom: 20px;
}

.user-dashboard-container {
    gap: 30px;
    overflow-x: auto;
    margin-bottom: 20px;
}

.chart-card {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    padding: 25px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    margin: 0px 0px 20px;
    overflow-x: auto;
}

.dark-mode .chart-card {
    background: linear-gradient(to right, #1a1a1a, #232526);
}

.chart-card h3 {
    margin: 0px 0px 15px;
    text-align: center;
    font-family: var(--headfont);
    font-size: 16px;
    color: var(--text);
}

.dark-mode .chart-card h3 {
    color: var(--ylw);
}
/*Media query*/
/* Large desktop and laptops*/
@media (min-width: 1200px) {
}

/* Landscape tablets and medium desktops*/
@media (min-width: 992px) and (max-width: 1199px) {
}

/* medium tablets and medium laptop*/
@media (min-width: 768px) and (max-width: 991px) {
}

/* portrait tablets and small desktops*/
@media (max-width: 767px) {
    .chart-card h3 {
        font-size: 18px;
    }
}

/* Mobile and small Phones*/
@media (max-width: 480px) {
}
/*Media query*/

