*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Segoe UI',sans-serif;
}

body{
    min-height:100vh;
    background:linear-gradient(135deg,#0f766e,#14b8a6);
    padding:30px 15px;
}

.container{
    max-width:900px;
    margin:auto;
    background:#fff;
    border-radius:20px;
    padding:30px;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
}

h1{
    text-align:center;
    color:#0f766e;
    margin-bottom:10px;
}

.subtitle{
    text-align:center;
    color:#64748b;
    margin-bottom:25px;
}

form{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:15px;
    margin-bottom:25px;
}

input,
select{
    padding:12px;
    border:2px solid #e2e8f0;
    border-radius:12px;
    outline:none;
}

input:focus,
select:focus{
    border-color:#14b8a6;
}

button{
    border:none;
    border-radius:12px;
    padding:12px;
    cursor:pointer;
    font-weight:bold;
}

form button{
    background:#0f766e;
    color:white;
}

form button:hover{
    background:#115e59;
}

.card{
    background:#f8fafc;
    border-left:5px solid #14b8a6;
    padding:15px;
    border-radius:12px;
    margin-top:15px;
}

.card h3{
    margin-bottom:8px;
}

.card p{
    margin-bottom:5px;
}

.actions{
    margin-top:15px;
    display:flex;
    gap:10px;
}

.editBtn{
    background:#f59e0b;
    color:white;
}

.hapusBtn{
    background:#ef4444;
    color:white;
}

.editBtn:hover{
    background:#d97706;
}

.hapusBtn:hover{
    background:#dc2626;
}