.dashboard-wrapper { max-width: 1200px; margin: 0 auto; padding: 20px; }

/* --- Pembaruan Header Dashboard --- */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    margin-top: 20px;
    margin-bottom: 40px;
    border-left: 8px solid var(--primary); /* Aksen garis hijau vertikal */
}

.logo-area h1 {
    font-size: 32px;
    letter-spacing: -1px;
    color: var(--dark);
    margin-bottom: 5px;
}

.logo-area h1 span {
    color: var(--primary);
    position: relative;
}

.logo-area p {
    font-size: 14px;
    color: #95a5a6;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Kotak Profil User di Sebelah Kanan */
.user-profile {
    background: #f8f9fa;
    padding: 12px 20px;
    border-radius: 10px;
    border: 1px solid #edf2f7;
    text-align: right;
}

.user-profile p {
    font-size: 13px;
    color: #7f8c8d;
    margin: 0;
}

.user-profile strong {
    display: block;
    font-size: 15px;
    color: var(--dark);
    margin-top: 3px;
}

.section-title { border-left: 4px solid var(--primary); padding-left: 15px; margin: 30px 0 20px; font-size: 20px; }

/* Perbaikan Kartu Pokja agar teks tidak menempel */
.pokja-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 15px; }

.pokja-card {
    background: white;
    padding: 25px 15px;
    text-align: center;
    text-decoration: none;
    color: #2c3e50; /* Warna teks utama lebih gelap */
    font-weight: 700; /* Pokja 1, 2, dst jadi tebal */
    font-size: 18px; 
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 140px; /* Sedikit lebih tinggi agar teks panjang tidak sesak */
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.pokja-card span {
    display: block;
    font-size: 12px; /* Ukuran keterangan sedikit diperbesar */
    font-weight: 500; /* Tidak terlalu tipis */
    color: #5d6a6e; /* Abu-abu yang lebih gelap agar terbaca */
    margin-top: 12px;
    line-height: 1.4;
}
/* Efek saat kursor menempel */
.pokja-card:hover {
    transform: translateY(-5px);
    border-color: #27ae60;
    box-shadow: 0 8px 20px rgba(39, 174, 96, 0.15);
}

/* Grid Laporan */
.report-grid {
    display: grid;
    /* Mengatur agar maksimal 2 kolom saja */
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); 
    gap: 20px;
}
.card-action { 
    display: flex; align-items: center; background: white; padding: 25px; 
    text-decoration: none; color: var(--text); border-radius: 12px; box-shadow: var(--shadow); transition: 0.3s;
}
.card-action.highlight { background: var(--dark); color: white; }
.card-action .icon { font-size: 30px; margin-right: 20px; }
.card-action h3 { font-size: 16px; margin: 0; }
.card-action p { font-size: 12px; color: #7f8c8d; margin-top: 5px; }