:root {
    --primary: #27ae60;
    --dark: #2c3e50;
    --bg: #f4f7f6;
    --text: #333;
    --shadow: 0 4px 15px rgba(0,0,0,0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

.btn-home {
    display: inline-block;
    padding: 8px 15px;
    background-color: var(--dark); /* Mengikuti warna biru gelap dashboard */
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    transition: 0.3s;
}

.btn-home:hover {
    background-color: #1a252f;
    transform: translateY(-2px);
}

.btn-cetak {
    padding: 8px 15px;
    cursor: pointer;
    margin-left: 10px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-weight: bold;
}

.btn-cetak:hover {
    background: #f0f0f0;
}

/* Styling Tombol Simpan */
input[type="submit"], 
button[type="submit"] {
    background-color: #27ae60; /* Warna hijau khas Kemenag */
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 8px; /* Sudut membulat */
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease; /* Efek transisi halus */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: block;
    margin-top: 20px;
}

/* Efek saat kursor diarahkan ke tombol (Hover) */
input[type="submit"]:hover, 
button[type="submit"]:hover {
    background-color: #219150;
    transform: translateY(-2px); /* Tombol sedikit terangkat */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Efek saat tombol diklik (Active) */
input[type="submit"]:active, 
button[type="submit"]:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}