*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Segoe UI',sans-serif;
}

body{
    background:#f4f6f9;
}

.navbar{
    background:linear-gradient(135deg,#ff7b54,#ffb26b);
    padding:15px 40px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    color:white;
    font-size:24px;
    font-weight:bold;
}

.menu a{
    color:white;
    text-decoration:none;
    margin-left:20px;
    font-weight:600;
}

.menu a:hover{
    color:#333;
}

.container{
    width:90%;
    margin:30px auto;
}

.hero{
    background:white;
    border-radius:15px;
    padding:40px;
    text-align:center;
    box-shadow:0 3px 10px rgba(0,0,0,.1);
}

.hero h1{
    color:#ff7b54;
    margin-bottom:10px;
}

.hero p{
    color:#666;
}

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:20px;
    margin-top:30px;
}

.card{
    background:white;
    border-radius:15px;
    padding:25px;
    text-align:center;
    box-shadow:0 3px 10px rgba(0,0,0,.1);
}

.card h2{
    color:#ff7b54;
    margin-bottom:10px;
}

.card span{
    font-size:30px;
    font-weight:bold;
}

.form-box{
    background:white;
    padding:25px;
    border-radius:15px;
    margin-bottom:20px;
    box-shadow:0 3px 10px rgba(0,0,0,.1);
}

input,
select,
textarea{
    width:100%;
    padding:12px;
    border:1px solid #ddd;
    border-radius:8px;
    margin-bottom:15px;
}

button{
    background:#ff7b54;
    color:white;
    border:none;
    padding:12px 20px;
    border-radius:8px;
    cursor:pointer;
}

button:hover{
    background:#ff6333;
}

table{
    width:100%;
    border-collapse:collapse;
    background:white;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 3px 10px rgba(0,0,0,.1);
}

table th{
    background:#ff7b54;
    color:white;
    padding:12px;
}

table td{
    padding:12px;
    text-align:center;
    border-bottom:1px solid #eee;
}

.edit{
    background:#3498db;
    color:white;
    padding:6px 12px;
    border-radius:5px;
    text-decoration:none;
}

.hapus{
    background:#e74c3c;
    color:white;
    padding:6px 12px;
    border-radius:5px;
    text-decoration:none;
}

.footer{
    text-align:center;
    padding:20px;
    margin-top:30px;
    color:#777;
}