    /* <style> */

        body{
            font-family: 'Prompt', sans-serif;
            background-color: #f4f6f9;
        }

        /* Sidebar */
        .sidebar{
            width: 260px;
            min-height: 100vh;
            background: linear-gradient(180deg, #2db7a3, #3c3b6e);
            transition: .3s;
        }

        .sidebar .nav-link{
            color: #fff;
            padding: 12px 16px;
            border-radius: 12px;
            margin-bottom: 5px;
            transition: .3s;
        }

        .sidebar .nav-link:hover,
        .sidebar .nav-link.active{
            background: rgba(255,255,255,.15);
        }

        .content-wrapper{
            width: 100%;
        }

        /* Topbar */
        .topbar{
            height: 70px;
            background: #fff;
            border-bottom: 1px solid #e5e5e5;
        }

        /* Dashboard Cards */
        .dashboard-card{
            border: none;
            border-radius: 20px;
            box-shadow: 0 2px 10px rgba(0,0,0,.05);
        }

        .dashboard-card .icon{
            width: 60px;
            height: 60px;
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 26px;
        }

        /* Table */
        .table thead{
            background: #7b001c;
            color: white;
        }

        .table{
            vertical-align: middle;
        }

        /* DataTables */
        .dataTables_filter input{
            border-radius: 10px !important;
            padding: 8px 12px !important;
        }

        .dataTables_length select{
            border-radius: 10px !important;
        }

        .page-link{
            border-radius: 8px !important;
            margin: 0 2px;
        }

        .page-item.active .page-link{
            background-color: #157c6d;
            border-color: #157c6d;
        }

        /* Mobile */
        @media(max-width:991px){

            .sidebar{
                position: fixed;
                left: -260px;
                top: 0;
                z-index: 1050;
            }

            .sidebar.show{
                left: 0;
            }

        }

    /* </style> */