/* ========= GLOBAL ========= */
body {
    background-color: #eef3ff !important;
    font-family: 'Poppins', sans-serif;
    color: #1e293b;
}

a {
    text-decoration: none !important;
}

.btn {
    border-radius: 10px !important;
    font-weight: 600 !important;
}

/* BLUE PRIMARY BUTTON */
.btn-primary {
    background-color: #2563eb !important;
    border: none !important;
}

.btn-primary:hover {
    background-color: #1d4ed8 !important;
}

/* BLUE OUTLINE BUTTON */
.btn-outline-primary {
    border-width: 2px !important;
    border-color: #2563eb !important;
    color: #2563eb !important;
}
.btn-outline-primary:hover {
    background-color: #2563eb !important;
    color: white !important;
}

/* SECONDARY button */
.btn-secondary {
    background-color: #64748b !important;
    border: none !important;
}

/* ========= NAVBAR ========= */
.navbar {
    background: #0a1d3c !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.navbar-brand, .nav-link {
    color: #fff !important;
    font-weight: 600;
}

/* ========= HERO ========= */
.hero-section {
    background: linear-gradient(to right, #60a5fa, #3b82f6);
    padding: 70px 40px;
    border-radius: 20px;
    color: white;
    box-shadow: 0 10px 25px rgba(0,0,0,0.10);
}

/* ========= STAT CARD ========= */
.stat-card {
    background: white;
    border-radius: 15px;
    padding: 24px;
    text-align: center;
    transition: .25s;
    border: 1px solid #dbeafe;
}
.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.12);
}

/* PREMIUM GRADIENT CARDS */
.stat-gradient {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    border: none !important;
    color: white !important;
}
.stat-yellow {
    background: linear-gradient(135deg, #facc15, #fef08a);
    color: #4d4700 !important;
}
.stat-green {
    background: linear-gradient(135deg, #4ade80, #86efac);
    color: #064e3b !important;
}
.stat-red {
    background: linear-gradient(135deg, #f87171, #fecaca);
    color: #7f1d1d !important;
}

/* ========= SEARCH ========= */
.search-box {
    background: white;
    border-radius: 12px;
    padding: 12px;
    border: 1px solid #d1d5db;
}
.search-box input {
    color: #1e293b !important;
}

/* ========= GALLERY CARD ========= */
.card-gallery {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    transition: .25s;
    border: 1px solid #e2e8f0;
}
.card-gallery:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

/* ========= DETAIL PAGE ========= */
.detail-container {
    background: white;
    border-radius: 20px;
    padding: 30px;
    border: 1px solid #d1d5db;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
.detail-cover {
    border-radius: 15px;
    max-height: 350px;
    width: 100%;
    object-fit: cover;
}

/* ========= RIBBON HEADER (NEW) ========= */
.ribbon {
    background: #3b82f6;
    padding: 22px 25px;
    border-radius: 16px;
    color: white;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
    margin-bottom: 25px;
}

/* ========= DASHBOARD CARD ========= */
.dashboard-card {
    background: white;
    border-radius: 15px;
    padding: 20px;
    border: 1px solid #d1d5db;
    transition: .2s;
}
.dashboard-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* ========= TABLE CONTAINER ========= */
.table-container {
    background: white;
    padding: 20px;
    border-radius: 15px;
    border: 1px solid #d1d5db;
    box-shadow: 0 5px 18px rgba(0,0,0,0.06);
}

/* TABLE PREMIUM */
table.table {
    border-radius: 15px;
    overflow: hidden;
}

.table thead {
    background-color: #3b82f6;
    color: white;
}

.table tbody tr:hover {
    background-color: #f1f5ff;
    cursor: pointer;
}

/* ========= FORM CARD ========= */
.form-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    border: 1px solid #d1d5db;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.form-control {
    border-radius: 10px !important;
    border: 1.6px solid #cbd5e1 !important;
}

/* ========= BADGE STYLE ========= */
.badge {
    padding: 8px 12px;
    border-radius: 8px;
}

/* Status badges */
.badge-pending {
    background: #facc15;
    color: #1e293b;
}
.badge-approved {
    background: #22c55e;
    color: white;
}
.badge-rejected {
    background: #ef4444;
    color: white;
}

/* ========= CARD SPACING ========= */
.section-title {
    font-weight: 700;
    margin-bottom: 15px;
    color: #1e3a8a;
}

/* ========= PROKER LIST ICON ========= */
.proker-link i {
    margin-right: 6px;
    color: #2563eb;
}

/* ========= GALLERY WRAPPER ========= */
.gallery-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    grid-gap: 20px;
}

