/* admin_full.css - Versi Final Header & Full Screen */
:root {
    --pink: #D95D8A;
    --soft-pink: #FFF5F7;
    --text-dark: #333;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #fdfdfd;
    margin: 0;
    color: var(--text-dark);
}

/* HEADER NAVIGASI PERSIS GAMBAR */
.admin-header {
    background: white;
    padding: 10px 5%;
    /* Jarak samping header */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    /* Logo kiri, Nav tengah, Logout kanan */
    align-items: center;
}

/* Logo Area */
.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
}

.admin-logo-img {
    height: 35px;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.4rem;
}

/* Navigasi Tengah */
.admin-nav {
    display: flex;
    gap: 30px;
    position: absolute;
    /* Memaksa ke tengah layar */
    left: 50%;
    transform: translateX(-50%);
}

.admin-nav a {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 5px 0;
    transition: 0.3s;
}

/* Garis Bawah Pink (Indicator) */
.admin-nav a.active,
.admin-nav a:hover {
    color: var(--pink);
    border-bottom: 2px solid var(--pink);
}

/* Tombol Logout Oval Pink */
.btn-logout {
    background: var(--pink);
    color: white;
    padding: 10px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.3s;
}

.btn-logout:hover {
    opacity: 0.9;
}

/* CONTAINER FULL SCREEN */
.admin-container {
    width: 95%;
    margin: 40px auto;
}

/* JUDUL DI TENGAH */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 50px;
    width: 100%;
}

/* TABEL PINK LEBAR */
.table-card-pink {
    background: var(--soft-pink);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.admin-table-main {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
}

.admin-table-main tr {
    background: white;
}

.admin-table-main td {
    padding: 20px;
    font-size: 0.95rem;
}

/* Tombol Tambah Gaya Katalog (Border Pink) */
.btn-add {
    background: transparent !important;
    color: var(--pink) !important;
    border: 1px solid var(--pink) !important;
    padding: 8px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: 0.3s;
}

.btn-add:hover {
    background: var(--pink) !important;
    color: white !important;
}

/* Tombol Edit/Hapus */
.btn-edit-action {
    color: green;
    text-decoration: none;
    margin-right: 10px;
}

.btn-delete-action {
    color: red;
    text-decoration: none;
}