/* public/css/custom.css */

/* Contoh: Menyesuaikan beberapa elemen dasar */
body {
    scroll-behavior: smooth;
}


.dashboard-header-card {
    margin-top: -1rem !important;    /* -16px: Menempel ke atas */
    margin-left: -1rem !important;   /* -16px: Menempel ke kiri */
    margin-right: -1rem !important;  /* -16px: Menempel ke kanan */
    /* Untuk memastikan sudut atasnya tajam jika rounded-lg diterapkan */
    border-top-left-radius: 0 !important; 
    border-top-right-radius: 0 !important;
}


/* Contoh untuk popup */
.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}