*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
}

body{
    background:#f4f6f9;
}

/* NAVBAR */

.navbar{
    width:100%;
    background:#27ae60;
    padding:15px 30px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    color:white;
    position:sticky;
    top:0;
    z-index:1000;
}

.navbar h2{
    font-size:24px;
}

.navbar a{
    color:white;
    text-decoration:none;
    margin-left:20px;
    font-weight:bold;
}

/* CONTAINER */

.container{
    padding:30px;
}

/* DASHBOARD */

.dashboard-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

.dashboard-card{
    background:white;
    padding:25px;
    border-radius:20px;
    box-shadow:0 4px 10px rgba(0,0,0,0.08);
    transition:0.3s;
}

.dashboard-card:hover{
    transform:translateY(-5px);
}

.dashboard-card h3{
    margin-bottom:10px;
    color:#666;
}

.dashboard-card h1{
    color:#27ae60;
    font-size:35px;
}

/* MENU GRID */

.menu-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

/* CARD */

.card{
    background:white;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 4px 10px rgba(0,0,0,0.08);
    transition:0.3s;
}

.card:hover{
    transform:translateY(-5px);
}

.card img{
    width:100%;
    height:200px;
    object-fit:cover;
}

.card-body{
    padding:20px;
}

.card-body h3{
    margin-bottom:10px;
}

.price{
    color:#27ae60;
    font-weight:bold;
    font-size:18px;
    margin-bottom:10px;
}

/* FORM */

input{
    width:100%;
    padding:12px;
    border:1px solid #ddd;
    border-radius:10px;
    margin-top:10px;
}

/* BUTTON */

button{
    width:100%;
    padding:12px;
    border:none;
    background:#27ae60;
    color:white;
    border-radius:10px;
    margin-top:15px;
    cursor:pointer;
    font-size:16px;
}

button:hover{
    background:#219150;
}

.btn{
    display:inline-block;
    padding:10px 15px;
    background:#27ae60;
    color:white;
    text-decoration:none;
    border-radius:10px;
}

.btn-danger{
    background:red;
}

/* TABLE */

table{
    width:100%;
    border-collapse:collapse;
    background:white;
    margin-top:20px;
    border-radius:15px;
    overflow:hidden;
}

table th{
    background:#27ae60;
    color:white;
}

table th,
table td{
    padding:15px;
    text-align:center;
    border-bottom:1px solid #eee;
}

/* LOGIN */

.login-container{
    height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
}

.login-box{
    width:350px;
    background:white;
    padding:30px;
    border-radius:20px;
    box-shadow:0 4px 10px rgba(0,0,0,0.1);
}

.login-box h2{
    text-align:center;
    margin-bottom:20px;
    color:#27ae60;
}

/* RESPONSIVE */

@media(max-width:768px){

.navbar{
    flex-direction:column;
    text-align:center;
}

.navbar div{
    margin-top:10px;
}

.container{
    padding:15px;
}

}