* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: #f5f5f5;
    color: #222;
}

/* HEADER */
.header-ipdn {
    background: #ffffff;
    border-bottom: 5px solid #b00000;
    padding: 15px 60px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-ipdn img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.header-text h1 {
    font-size: 30px;
    color: #111;
    letter-spacing: 1px;
}

.header-text p {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

/* HERO */
.hero {
    background: linear-gradient(rgba(120, 0, 0, 0.75), rgba(120, 0, 0, 0.75)),
                url('banner-ipdn.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 70px 60px;
    text-align: center;
}

.hero h2 {
    font-size: 38px;
    color: #ffd700;
    text-shadow: 2px 2px 4px #000;
    margin-bottom: 15px;
}

.hero p {
    font-size: 18px;
}

/* CONTAINER */
.container {
    width: 90%;
    max-width: 1100px;
    margin: 35px auto;
}

/* CARD FORM */
.card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    border-top: 6px solid #b00000;
    box-shadow: 0 3px 12px rgba(0,0,0,0.15);
}

.card h2 {
    margin-bottom: 20px;
    color: #b00000;
    text-align: center;
}

/* FORM */
.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    font-weight: bold;
    margin-bottom: 6px;
}

input, select, textarea {
    width: 100%;
    padding: 11px;
    border: 1px solid #bbb;
    border-radius: 5px;
    font-size: 15px;
}

button, .btn {
    background: #b00000;
    color: white;
    border: none;
    padding: 11px 18px;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    font-weight: bold;
}

button:hover, .btn:hover {
    background: #7a0000;
}

.btn-gold {
    background: #d4af37;
    color: #111;
}

.btn-gold:hover {
    background: #b9972f;
}

/* TABLE ADMIN */
table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 3px 12px rgba(0,0,0,0.12);
}

th {
    background: #b00000;
    color: #ffd700;
    padding: 12px;
    text-transform: uppercase;
}

td {
    padding: 12px;
    border-bottom: 1px solid #ddd;
    text-align: center;
}

tr:hover {
    background: #fff5f5;
}

/* STATUS */
.status {
    padding: 6px 10px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 13px;
}

.status-menunggu {
    background: #fff3cd;
    color: #856404;
}

.status-disetujui {
    background: #d4edda;
    color: #155724;
}

.status-ditolak {
    background: #f8d7da;
    color: #721c24;
}

/* FOOTER */
.footer {
    background: #111;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 40px;
    border-top: 4px solid #d4af37;
}