/* =================================== */
/* == KONFIGURASI WARNA UTAMA == */
/* =================================== */
:root {
    --sky-blue: #00d2ff;
    --sky-blue-dark: #3a7bd5;
    --white: #ffffff;
}

/* =================================== */
/* == STYLE UNTUK HALAMAN PUBLIK == */
/* =================================== */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
}

/* Override Warna Navbar Utama */
.navbar.bg-primary {
    background: linear-gradient(135deg, var(--sky-blue) 0%, var(--sky-blue-dark) 100%) !important;
}

/* Gaya Tombol Utama (Sky Blue) */
.btn-primary {
    background: linear-gradient(135deg, var(--sky-blue) 0%, var(--sky-blue-dark) 100%) !important;
    border: none !important;
    transition: 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 210, 255, 0.4);
}

/* Gaya Tombol Outline (Biasa dipakai di "Lihat Semua") */
.btn-outline-primary {
    border-color: var(--sky-blue) !important;
    color: var(--sky-blue) !important;
}

.btn-outline-primary:hover {
    background-color: var(--sky-blue) !important;
    color: white !important;
}

/* Badge atau Tag Status */
.badge.bg-primary {
    background-color: var(--sky-blue) !important;
}

/* Hero Section overlay */
.hero-section {
    background-image: linear-gradient(rgba(15, 32, 39, 0.7), rgba(32, 58, 67, 0.7)), url('../../uploads/background-hero.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    color: white;
    padding: 120px 0;
}

/* =================================== */
/* == STYLE UNTUK DASHBOARD ADMIN == */
/* =================================== */

.admin-wrapper {
    display: flex;
}

#admin-sidebar {
    width: 260px;
    min-width: 260px;
    background: #1e293b; /* Warna Sidebar lebih modern (biru gelap) */
    color: #fff;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

#admin-sidebar .sidebar-header {
    padding: 20px;
    text-align: center;
    background: #0f172a;
    border-bottom: 1px solid #334155;
}

#admin-sidebar ul.components {
    padding: 20px 0;
    flex-grow: 1;
}

#admin-sidebar ul li a {
    padding: 12px 20px;
    font-size: 1em;
    display: block;
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.2s;
}

#admin-sidebar ul li a:hover {
    color: #fff;
    background: rgba(255,255,255,0.1);
}

/* Warna menu aktif di Admin diubah jadi Sky Blue */
#admin-sidebar ul li.active > a {
    color: #fff;
    background: var(--sky-blue) !important;
    font-weight: bold;
}

#admin-content {
    width: 100%;
    padding: 20px;
    min-height: 100vh;
    transition: all 0.3s;
    background-color: #f1f5f9;
}

/* ===========================================
   PENGATURAN KOP SURAT & CETAK LAPORAN 
=========================================== */
.kop-surat, .kop-resmi {
    display: none; 
}

@media print {
    .sidebar, .filter-section, .btn, .main-content h2, hr {
        display: none !important;
    }

    .main-content {
        margin-left: 0 !important;
        padding: 0 !important;
    }

    .kop-surat, .kop-resmi {
        display: flex !important;
        align-items: center;
        border-bottom: 4px double black;
        padding-bottom: 10px;
        margin-bottom: 20px;
    }

    .logo-kop {
        width: 100px;
        margin-right: 20px;
    }

    .teks-kop {
        flex-grow: 1;
        text-align: center;
        margin-right: 100px; 
    }

    .teks-kop h4, .teks-kop h5 {
        margin: 0;
        padding: 0;
        font-weight: bold;
        text-transform: uppercase;
    }

    .teks-kop p {
        margin: 0;
        font-size: 10pt;
    }

    .table {
        width: 100% !important;
        border-collapse: collapse !important;
    }
    .table th, .table td {
        border: 1px solid black !important;
        padding: 8px !important;
        color: black !important;
    }
}

/* PAKSA SEMUA TOMBOL BIRU JADI SKY BLUE */
.btn-primary, 
.btn-dark, 
.btn-blue, 
.btn-navy, 
[style*="background-color: #1e3c72"], 
[style*="background-color: #0d6efd"] {
    background: linear-gradient(135deg, #00d2ff 0%, #3a7bd5 100%) !important;
    border: none !important;
    color: white !important;
}

/* KHUSUS TOMBOL "LIHAT SEMUA BERITA" */
.btn-outline-light, .btn-outline-primary {
    border: 2px solid #00d2ff !important;
    color: #00d2ff !important;
    background: transparent !important;
}

.btn-outline-light:hover {
    background: #00d2ff !important;
    color: white !important;
}

/* BAGIAN BAWAH/FOOTER YANG BIRU TUA */
.bg-primary, .bg-navy, section.bg-primary {
    background: linear-gradient(135deg, #3a7bd5 0%, #00d2ff 100%) !important;
}