.modern-input {
    border-radius: 5px !important;
    border: 1px solid #ccc !important;
    transition: 0.3s;
}

.modern-input:focus {
    border-color: #f79323 !important;
    box-shadow: 0 0 8px rgba(247, 147, 35, 0.3) !important;
}

.slide-btn {
    color: #fff !important;
    border: 1px solid #f79322;
    background-color: #f79322 !important;
    padding: 13px;
    font-weight: 500;
    font-size: 15px;
}


/* Overlay */
#overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 998;
}

/* Toggle Button */
.nav-toggle-btn {
    display: none;
    background: #f79322;
    color: #fff;
    border: none;
    padding: 5px 10px;
    font-size: 18px;
    cursor: pointer;
    position: fixed;
    top: 38px;
    left: 20px;
    z-index: 1001;
    border-radius: 5px;
}

/* Mobile Responisve View */
@media (max-width: 768px) {
    #nav-bar {
        position: fixed;
        top: 0;
        left: 0;
        transform: translateX(-100%);
        z-index: 999;
    }

    #nav-bar.active {
        transform: translateX(0);
    }

    .nav-toggle-btn {
        display: block;
        /* show only on mobile */
    }

    #overlay.active {
        display: block;
    }

    .main {
        margin-left: 0px !important;
        /* flex-grow: 1; */
        padding: 15px !important;
        background: #eef2f6;
        transition: margin-left 0.3s ease-in-out;
    }

    .dashboard-header {
        display: none;
    }

    .breadcrumb {
        display: none;
    }

    .search-box input {
        width: 100% !important;

    }

    .csv-download {
        margin-right: 10px;
    }

    .copy-text {
        margin-top: 30px;
        margin-bottom: 30px !important;
    }

}

@media (max-width: 768px) {
    #nav-bar {
        top: 70px;
        /* adjust to your header height */
        height: calc(100vh - 70px);
    }
}

.modal-footer {
    justify-content: center !important;
}