*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#f7f8f2;
}

/* SIDEBAR */
.sidebar{
    width:260px;
    height:100vh;
    position:fixed;
    left:0;
    top:0;
    background:linear-gradient(
    180deg,
    #c7e8ca,
    #d8ecff
    );
    padding:25px;
    box-shadow:
    4px 0 20px rgba(0,0,0,0.08);
}

.sidebar h2{
    text-align:center;
    margin-bottom:35px;
    color:#4e6454;
    font-size:28px;
    font-weight:bold;
}

.sidebar a{
    display:flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
    color:#4d6154;
    background:rgba(255,255,255,0.7);
    padding:15px 18px;
    margin-bottom:14px;
    border-radius:18px;
    transition:0.3s;
    font-weight:600;
    backdrop-filter:blur(10px);
}

.sidebar a:hover{
    transform:translateX(6px);
    background:white;
    box-shadow:
    0 5px 15px rgba(0,0,0,0.08);
}

/* MAIN */
.main{
    margin-left:280px;
    padding:35px;
}

/* CARD */
.card{
    background:white;
    border-radius:28px;
    padding:30px;
    box-shadow:
    0 10px 30px rgba(0,0,0,0.08);
}

/* TITLE */
h1,h2,h3{
    color:#536357;
    margin-bottom:15px;
}

/* INPUT */
input,
select{
    width:100%;
    padding:15px;
    border-radius:18px;
    border:2px solid #dce7d8;
    outline:none;
    margin-bottom:16px;
    font-size:15px;
    transition:0.3s;
}

input:focus,
select:focus{
    border-color:#a8d5ba;
    box-shadow:
    0 0 10px rgba(168,213,186,0.3);
}

/* BUTTON */
button{
    border:none;
    padding:14px 22px;
    border-radius:16px;
    background:#a8d5ba;
    color:#355041;
    font-weight:bold;
    cursor:pointer;
    transition:0.3s;
}

button:hover{
    transform:translateY(-2px);
    box-shadow:
    0 8px 20px rgba(0,0,0,0.12);
}

/* TABLE */
table{
    width:100%;
    border-collapse:collapse;
    overflow:hidden;
    border-radius:20px;
    margin-top:20px;
}

table th{
    background:#d8ecff;
    color:#445563;
    padding:18px;
}

table td{
    background:white;
    padding:18px;
    border-bottom:1px solid #eee;
}

table tr:hover td{
    background:#fafafa;
}

/* CARD DASHBOARD */
.dashboard-box{
    display:grid;
    grid-template-columns:
    repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
}

.mini-card{
    background:white;
    border-radius:25px;
    padding:25px;
    box-shadow:
    0 10px 20px rgba(0,0,0,0.08);
}

/* RESPONSIVE */
@media(max-width:768px){

.sidebar{
width:100%;
height:auto;
position:relative;
}

.main{
margin-left:0;
padding:20px;
}

}