/* DAFTAR USAHA PML */
.usaha-card {
    border: 1px solid #f6e7dc;
    border-radius: 16px;
    transition: all 0.25s ease;
    background: linear-gradient(180deg,
            #ffffff 0%,
            #fffaf6 100%);
}

.usaha-card:hover {
    background: linear-gradient(180deg,
            #ffffff 0%,
            #fff3ea 100%);
    border-color: #f4c9a8;
    box-shadow:
        0 14px 34px rgba(255, 140, 66, 0.14),
        0 4px 10px rgba(255, 140, 66, 0.08) !important;
}

.usaha-card .card-body {
    padding: 1.2rem;
}

.usaha-card h5 {
    font-weight: 600;
    color: #d96b1d;
}

.usaha-card .btn {
    transition: all 0.2s ease;
}

.usaha-card .btn:hover {
    transform: translateY(-1px);
}

/* DROPDOWN STATUS USAHA */
.status-dropdown-btn {
    /* border-radius: 12px; */
    font-weight: 500;
    /* padding: 0.45rem 0.9rem; */
}

.dropdown-menu {
    border-radius: 14px;
    min-width: 220px;
    overflow: hidden;
}

.dropdown-item {
    padding: 0.7rem 1rem;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background-color: #fff3ea;
    transform: translateX(2px);
}

/* TOAST */
.custom-alert-bar {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 56px;
    z-index: 2000;
    color: white;
    border-radius: 18px;
    padding: 14px 18px;
    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.18);
    animation:
        slideUpFade 0.3s ease;
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform:
            translateY(20px);
    }

    to {
        opacity: 1;
        transform:
            translateY(0);
    }
}

/* LABEL PADA FORM */
.control-label {
    color: rgba(var(--bs-secondary-rgb), 0.8) !important;
}

.hint-block {
    text-align: right !important;
    color: rgba(var(--bs-secondary-rgb), 0.8) !important;
    font-style: italic;
    font-size: smaller;
}

.form-label {
    font-weight: 600;
    color: #495057;
}

.form-control[readonly] {
    background-color: #dee2e6;
    border-color: #adb5bd;
    color: #495057 !important;
}

.text-xs {
    font-size: smaller;
}

/* MOBILE NAVIGATION */
@media (max-width: 1199px) {

    body.mobile-nav-active {

        overflow: hidden;
    }

    .mobile-nav-active section,
    .mobile-nav-active .section {

        overflow: visible !important;
    }

    .mobile-nav-active .header {

        overflow: visible !important;
    }

    .mobile-nav-active .navmenu ul {

        display: block !important;

        opacity: 1 !important;

        visibility: visible !important;
    }
}