*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, Helvetica, sans-serif;
}

body{
background:#f4f7f6;
}

.navbar{
background:#1E7A3A;
color:white;
padding:15px 30px;
display:flex;
justify-content:space-between;
align-items:center;
box-shadow:0 2px 8px rgba(0,0,0,.1);
}

.logo-area{
display:flex;
align-items:center;
gap:12px;
}

.logo-area img{
width:45px;
}

.logo-text h2{
font-size:22px;
}

.logo-text p{
font-size:12px;
}

.menu{
display:flex;
gap:30px;
}

.menu a{
color:white;
text-decoration:none;
font-weight:bold;
}

.menu a:hover{
opacity:.8;
}

.user{
display:flex;
gap:15px;
align-items:center;
}

.container{
width:95%;
margin:25px auto;
}

.card-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:20px;
margin-bottom:20px;
}

.card{
background:white;
padding:25px;
border-radius:12px;
box-shadow:0 2px 8px rgba(0,0,0,.1);
text-align:center;
}

.card h3{
color:#666;
font-size:14px;
margin-bottom:10px;
}

.card .angka{
font-size:42px;
color:#1E7A3A;
font-weight:bold;
}

.welcome{
background:white;
padding:25px;
border-radius:12px;
box-shadow:0 2px 8px rgba(0,0,0,.1);
}

.welcome h2{
color:#1E7A3A;
}

.form-box{
background:white;
padding:20px;
border-radius:10px;
box-shadow:0 2px 8px rgba(0,0,0,.1);
}

table{
width:100%;
border-collapse:collapse;
background:white;
}

table th,
table td{
border:1px solid #ddd;
padding:10px;
}

table th{
background:#f5f5f5;
}

.btn{
background:#1E7A3A;
color:white;
padding:10px 15px;
text-decoration:none;
border-radius:6px;
border:none;
cursor:pointer;
}

.btn:hover{
opacity:.9;
}

.btn-hijau{
background:#28a745;
color:white;
border:none;
padding:10px 15px;
border-radius:6px;
cursor:pointer;
}

.btn-biru{
background:#007bff;
color:white;
border:none;
padding:10px 15px;
border-radius:6px;
cursor:pointer;
}

.btn-merah{
background:#dc3545;
color:white;
border:none;
padding:10px 15px;
border-radius:6px;
cursor:pointer;
}

.status-merah{
color:red;
font-weight:bold;
}

.status-kuning{
color:orange;
font-weight:bold;
}

.status-hijau{
color:green;
font-weight:bold;
}

textarea{
width:100%;
min-height:120px;
padding:10px;
border:1px solid #ccc;
border-radius:6px;
}

input[type=text],
input[type=email],
input[type=date],
select{
width:100%;
padding:10px;
border:1px solid #ccc;
border-radius:6px;
}

@media(max-width:1200px){

.card-grid{
    grid-template-columns:repeat(3,1fr);
}
}

@media(max-width:768px){


.navbar{
    flex-direction:column;
    gap:15px;
}

.menu{
    flex-wrap:wrap;
    justify-content:center;
}

.card-grid{
    grid-template-columns:repeat(2,1fr);
}


}
@media(max-width:480px){

.card-grid{
    grid-template-columns:1fr;
}

}
