*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    font-family: "Segoe UI", Arial, sans-serif;
    background:#eef2f7;
    color:#1f2937;

}


/* Header */

.header{

    background:linear-gradient(135deg,#064e3b,#0369a1);
    color:white;
    padding:30px;
    border-radius:0 0 25px 25px;
    text-align:center;

}


.header h1{

    font-size:36px;
    margin-bottom:8px;

}


.header p{

    opacity:.9;

}


/* Dashboard */

.dashboard{

    display:grid;
    grid-template-columns:3fr 1fr;
    gap:25px;
    padding:30px;

}


/* Titles */

.section-title h2,
.side-title h2{

    font-size:24px;
    margin-bottom:18px;
    color:#075985;

}



/* Grid */

.market-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
    margin-bottom:35px;

}


/* Market Card */

.market-card{

    background:white;
    padding:25px 15px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.3s;
    border-top:4px solid #0ea5e9;

}


.market-card:hover{

    transform:translateY(-6px);

}


.market-card span{

    font-size:18px;
    font-weight:600;
    color:#334155;

}


.market-card h3{

    font-size:30px;
    margin:15px 0;
    color:#16a34a;

}


.market-card small{

    color:#64748b;

}



/* Mandi Cards */

.mandi{

    border-top-color:#f97316;

}


.mandi h3{

    color:#ea580c;

}



/* Sidebar */


.sidebar{

    background:white;
    padding:22px;
    border-radius:20px;
    height:max-content;
    box-shadow:0 8px 25px rgba(0,0,0,.08);

}



.side-card{

    background:#f8fafc;
    padding:18px;
    border-radius:15px;
    margin-bottom:15px;
    border-left:5px solid #0ea5e9;

}


.side-card h3{

    font-size:16px;

}


.side-card p{

    font-size:22px;
    margin-top:8px;
    font-weight:bold;
    color:#16a34a;

}




/* Mobile */

@media(max-width:1000px){

.dashboard{

    grid-template-columns:1fr;

}


.market-grid{

    grid-template-columns:repeat(2,1fr);

}


}



@media(max-width:600px){

.market-grid{

    grid-template-columns:1fr;

}


.header h1{

    font-size:28px;

}

}
