body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #2b1055; /* Ungu Gelap untuk Background */
    color: #fff;
    margin: 0;
    padding: 20px;
}

.container {
    max-width: 900px;
    margin: auto;
    background: #3b1c6e; /* Ungu Sedang untuk Box */
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

h2, h3 {
    text-align: center;
    color: #ff1493; /* Pink Tua / Deep Pink */
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Form Styling */
.form-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

input, select {
    padding: 10px;
    border: 2px solid #5c2c9e;
    border-radius: 5px;
    background-color: #1f0a3d;
    color: white;
    font-size: 14px;
}

input:focus, select:focus {
    outline: none;
    border-color: #ff1493; /* Aksen Pink saat fokus */
}

/* Button Styling */
.btn {
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-pink {
    background-color: #ff1493;
    color: white;
    width: 100%;
    font-size: 16px;
}

.btn-pink:hover {
    background-color: #ff69b4;
}

.btn-edit {
    background-color: #9370db;
    color: white;
    font-size: 12px;
}

.btn-edit:hover {
    background-color: #b0c4de;
}

.btn-hapus {
    background-color: #d11a2a;
    color: white;
    font-size: 12px;
}

/* Table Styling */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background-color: #250c46;
    font-size: 14px;
}

th, td {
    padding: 12px 10px;
    text-align: left;
    border-bottom: 1px solid #5c2c9e;
    vertical-align: middle;
}

th {
    background-color: #ff1493;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 13px;
}

tr:hover {
    background-color: #31145a;
}

/* Pengaturan Khusus Kolom Aksi Biar Sejajar */
.aksi-cell {
    display: flex;
    gap: 8px; /* Jarak antar tombol Edit dan Hapus */
    justify-content: center;
    border-bottom: none; /* Menghindari double border karena flexbox */
}

/* Tombol Khusus di Dalam Tabel */
.btn-table {
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    text-decoration: none;
    color: white;
    display: inline-block;
    text-align: center;
    transition: background 0.2s;
}

.btn-edit {
    background-color: #8a4fff; /* Ungu terang aksen pinkish */
}

.btn-edit:hover {
    background-color: #a072ff;
}

.btn-hapus {
    background-color: #d11a2a; /* Merah tegas untuk hapus */
}

.btn-hapus:hover {
    background-color: #ff4554;
}