/* Custom styles for DataTable */
        #datatable {
            border-collapse: collapse;
            width: 100%;
        }

        #datatable th, #datatable td {
            border: 1px solid #858282 !important; /* White-smoke border */
            padding: 0.5rem;
            text-align: left;
        }

        #datatable th {
            background-color: #f1f5f9; /* Light gray background for headers */
            color: #333;
        }

        #datatable tr:nth-child(even) {
            background-color: #f9fafb; /* Slightly different background for alternating rows */
        }

        #datatable tr:hover {
            background-color: #e5e7eb; /* Light gray on hover */
        }

        /* Set width for the "No" column */
        #datatable td:first-child,
        #datatable th:first-child {
            width: 8px !important; /* Width for "No" column */
            white-space: nowrap; /* Prevent text wrapping */
            text-align: center;
        }

        /* Set width for the "Aksi" column based on content */
        #datatable td:last-child,
        #datatable th:last-child {
            width: 10px !important; /* Allow to adjust based on content */
            white-space: nowrap; /* Prevent text wrapping */
            text-align: center;
        }

        /* DataTables custom styling */
        .dataTables_wrapper .dataTables_paginate .paginate_button {
            padding: 0.5rem 1rem;
            border: 1px solid #f5f5f5; /* White-smoke border */
            border-radius: 0.375rem;
            background-color: #f9fafb; /* Background color for pagination buttons */
            color: #4b5563;
        }

        .dataTables_wrapper .dataTables_paginate .paginate_button.current,
        .dataTables_wrapper .dataTables_paginate .paginate_button:hover {
            background-color: #4f46e5;
            color: #fff;
        }

        .dataTables_wrapper .dataTables_filter input {
            padding: 0.5rem;
            border-radius: 0.375rem;
            margin:10px !important;
            border: 1px solid #858282 !important; /* White-smoke border */
        }

        .dataTables_wrapper .dataTables_length select {
            padding: 0.5rem;
            border-radius: 0.375rem;
            border: 1px solid #858282 !important; /* White-smoke border */
        }

        .dataTables_wrapper .dataTables_info {
            padding: 0.5rem;
        }

        .text-center{
            text-align: center !important;
        }

    /* Custom Timeline Styles */
    .custom-timeline .timeline-line {
        left: 14px;
        width: 2px;
        background-color: #add8e6; /* Color of the timeline line */
    }

    .custom-timeline .timeline-dot {
        position: absolute;
        left: -2.6rem;
        top: 15%;
        transform: translateY(-50%);
        width: 20px;
        height: 20px;
        background-color: #add8e6;
        border: 2px solid white;
        border-radius: 50%;
    }

    .custom-timeline .loader {
        background-color: rgba(255, 255, 255, 0.8); /* Light overlay */
    }

    .custom-timeline .flex.items-start {
        display: flex;
        align-items: flex-start;
    }

    .custom-timeline .ml-8 {
        margin-left: 0rem; /* Adjust based on the dot and timeline placement */
    }
    .row-color-red{
        background-color: rgb(254 226 226 / var(--tw-bg-opacity)) !important;
    }
    .row-color-blue{
        background-color: rgb(219 234 254 / var(--tw-bg-opacity)) !important;
    }
    .row-color-green{
        background-color:rgb(220 252 231 / var(--tw-bg-opacity)) !important;
    }

    .form-ruang-carousel-container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .form-ruang-carousel {
        position: relative;
        width: 100%;
        height: 20vh; /* Adjust height as needed */
        overflow: hidden;
    }
    
    .form-ruang-carousel-inner {
        position: relative;
        width: 100%;
        height: 100%;
    }
    
    .form-ruang-carousel-item {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
        opacity: 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .form-ruang-carousel-item.active {
        opacity: 1;
        transform: translateX(0);
    }
    
    .form-ruang-carousel-item img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain; /* Ensures the image is scaled to fit the container without cropping */
        display: block;
    }
    
    .form-ruang-carousel-controls {
        display: flex;
        justify-content: center;
        width: 100%;
        padding: 0.5rem 0;
        gap: 0.5rem; /* Adjust gap if needed */
    }
    
    .form-ruang-carousel-control {
        cursor: pointer;
        padding: 0.25rem 0.5rem; /* Smaller padding */
        border: none;
        background-color: #ddd;
        border-radius: 0.25rem;
        transition: background-color 0.3s, color 0.3s;
        font-size: 0.75rem; /* Smaller font size */
        line-height: 1; /* Ensure vertical alignment */
    }
    
    .form-ruang-carousel-control.active {
        background-color: #007bff;
        color: white;
    }
    
    .form-ruang-carousel-control:hover {
        background-color: #ccc;
    }
    
    .form-ruang-carousel-zoom-btn {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-color: rgba(0, 0, 0, 0.5);
        border: none;
        border-radius: 50%;
        padding: 0.4rem; /* Padding disesuaikan dengan ukuran ikon */
        cursor: pointer;
        color: white;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 10;
        width: 2.5rem; /* Ukuran tombol yang lebih kecil */
        height: 2.5rem; /* Ukuran tombol yang lebih kecil */
        font-size: 1.2rem; /* Menyesuaikan ukuran ikon jika perlu */
        box-sizing: border-box; /* Pastikan padding tidak mempengaruhi ukuran total tombol */
    }
    
    .form-ruang-carousel-zoom-btn i {
        margin: 0; /* Menghapus margin default dari ikon */
    }
    
    
    .form-ruang-carousel-modal {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.8);
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 1000;
    }
    
    .form-ruang-carousel-modal-content {
        position: relative;
        max-width: 90%;
        max-height: 90%;
    }
    
    .form-ruang-carousel-modal-content img {
        width: 100%;
        height: auto;
    }
    
    .form-ruang-carousel-modal-close {
        position: absolute;
        top: 10px;
        right: 10px;
        font-size: 2rem;
        color: white;
        cursor: pointer;
        z-index: 1001;
    }
    
    /* Ensure hidden class hides the modal */
    .hidden-modal-ruang {
        display: none;
    }


        /* Contoh CSS tambahan jika diperlukan */
.text-white {
    color: #FFFFFF;
}

.text-2xl {
    font-size: 1.5rem; /* Atur ukuran sesuai kebutuhan */
}

.mr-1 {
    margin-right: 0.25rem; /* Atur margin sesuai kebutuhan */
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.no-tailwindcss-base {
    h1:not(.text-gray-900):not(.text-2xl):not(.font-bold):not(.mt-6):not(.mb-4),
    h2:not(.text-gray-900):not(.text-2xl):not(.font-bold):not(.mt-6):not(.mb-4),
    h3:not(.text-gray-900):not(.text-2xl):not(.font-bold):not(.mt-6):not(.mb-4),
    h4, h5, h6 {
        font-size: revert !important; /* Reset to default font size */
        font-weight: revert !important; /* Reset to default font weight */
        color: revert !important; /* Reset to default color */
        text-decoration: revert !important; /* Reset any text decoration */
    }
    ol,
    ul {
      list-style: revert !important;
      margin: revert !important;
      padding: revert !important;
      font-size: revert !important;
      font-weight: revert !important;
      line-height: revert !important; /* Atur kembali line-height jika diperlukan */
    }
    p {
        margin: revert !important; /* Atur kembali margin */
        padding: revert !important; /* Atur kembali padding */
        line-height: revert !important; /* Atur kembali line-height jika diperlukan */
        color : revert !important; /* Revert table border */
      }
      
.no-tailwindcss-base table,
.no-tailwindcss-base th,
.no-tailwindcss-base td,
.no-tailwindcss-base thead,
.no-tailwindcss-base tbody,
.no-tailwindcss-base tr {
    all: revert !important; /* Reset all styles to browser defaults */
    border-collapse: revert !important; /* Revert border-collapse property */
    border-spacing: revert !important; /* Revert border-spacing property */
    margin: revert !important;
    padding: revert !important;
    font-size: revert !important;
    font-weight: revert !important;
    line-height: revert !important;
    color: revert !important;
    text-align: revert !important;
    vertical-align: revert !important;
}

.no-tailwindcss-base table {
    width: revert !important; /* Revert table width */
    border: revert !important; /* Revert table border */
    color : revert !important; /* Revert table border */
}

.no-tailwindcss-base th, .no-tailwindcss-base td {
    padding: revert !important; /* Revert cell padding */
    border: revert !important; /* Revert cell border */
    text-align: revert !important; /* Revert text alignment */
    color : revert !important; /* Revert table border */
}

.no-tailwindcss-base thead {
    background-color: revert !important; /* Revert background color of the table header */
    font-weight: revert !important; /* Revert font-weight of the header */
    color : revert !important; /* Revert table border */
}


}
    
