
            /* Light Mode (default) */
            body {
                background-color: white;
                color: black;
            }

            .table {
                background-color: #f8f9fa;
            }

            /* Dark Mode */
            body.dark-mode {
                background-color: #121212;
                color: white;
            }

            body.dark-mode .table {
                background-color: #2c2f38;
                color: white;
            }

            body.dark-mode .table th,
            body.dark-mode .table td {
                color: white;
            }
            
            /* Dark Mode */
            body.dark-mode .modal-content {
                background-color: #2c2f38;
                color: white;
                border: 1px solid #444;
            }

            body.dark-mode .modal-header,
            body.dark-mode .modal-footer {
                background-color: #1f2229;
                border-color: #444;
            }

            body.dark-mode .modal-header .btn-close {
                filter: invert(1);
            }

            body.dark-mode .modal-body {
                background-color: #2c2f38;
            }

            body.dark-mode .form-control {
                background-color: #1f2229;
                color: white;
                border: 1px solid #444;
            }

            body.dark-mode .form-control::placeholder {
                color: #aaa;
            }

            body.dark-mode select.form-control {
                background-color: #1f2229;
                color: white;
            }

            body {
                margin: 0;
                padding: 0;
                font-family: 'Poppins', sans-serif;
                display: flex;
                height: 100vh;
                background-color: #f4f4f4;
            }
    
            /* Sidebar */
            .sidebar {
                width: 250px;
                background-color: #2c3e50;
                color: white;
                padding-top: 30px;
                transition: all 0.3s ease;
                position: fixed;
                height: 100%;
            }
    
            .sidebar a {
                display: flex;
                align-items: center;
                padding: 15px;
                text-decoration: none;
                color: white;
                font-size: 18px;
                border-bottom: 1px solid #34495e;
                transition: background-color 0.3s ease;
            }
    
            .sidebar a:hover {
                background-color: #16a085;
            }
    
            .sidebar i {
                margin-right: 15px;
                font-size: 20px;
            }
    
            /* Konten utama */
            .content {
                margin-left: 250px;
                padding: 20px;
                flex-grow: 1;
                background-color: #ecf0f1;
                height: 100%;
            }
    
            h1 {
                font-size: 28px;
                margin-bottom: 20px;
            }
    
            .content p {
                font-size: 18px;
                line-height: 1.6;
            }
    
            /* Efek sidebar muncul */
            .sidebar a.active {
                background-color: #1abc9c;
            }
    
            .logo-container img {
            width: 150px; /* Ukuran logo */
            border-radius: 10px; /* Membuat sudut melengkung */
            margin: 0 auto; /* Pusatkan logo */
            }
            /* Animasi untuk menu aktif */
            .sidebar a.active {
                background-color: #1abc9c;
                color: white;
                font-weight: bold;
                border-left: 4px solid #16a085;
                transition: all 0.3s ease;
            }

            #table_data {
                width: 100%; /* Atur lebar tabel sesuai kebutuhan */
                table-layout: fixed; /* Membuat kolom lebih terkontrol */
            }
            
            #table_data th, #table_data td {
                padding: 5px; /* Atur padding sel agar tidak terlalu besar */
                text-align: left; /* Opsional, jika ingin meratakan teks ke tengah */
            }
            
            #table_data td {
                overflow: hidden;
                text-overflow: ellipsis; /* Memotong teks yang panjang */
                white-space: nowrap; /* Tidak membiarkan teks membungkus ke baris berikutnya */
            }

            .text-left {
                text-align: left;
            }
            
            .dataTables_wrapper .dataTables_scroll .dataTables_scrollBody {
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
            }
            
            