/*lang button css start*/
/* Button Styles */
.language-button {
    z-index: 9999999;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(45deg, #000000, #333333);
    /* Primary color */
    color: #ffffff !important;
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.language-button:hover {
    background-color: #333333;
}

/* Dropdown Styles */
.language-dropdown {
    display: none;
    position: fixed;
    bottom: 70px;
    /* Above the button */
    right: 20px;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    z-index: 1000;
}

.language-dropdown ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.language-dropdown li {
    padding: 10px 20px;
    cursor: pointer;
    color: #333;
}

.language-dropdown li:hover {
    background-color: #f0f0f0;
}

/*lang button css end*/


/* Preloader Styles */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    /* Dark transparent background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#preloader .loader {
    width: 80px;
    /* Larger loader size */
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

#preloader .loader::before {
    content: '';
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-image: linear-gradient(310deg, #333333, #000000);
    /* Gradient color */
    animation: spin 1s linear infinite;
    /* Smooth spinning effect */
}

@keyframes spin {
    0% {
        transform: scale(0.5) rotate(0deg);
        opacity: 0.5;
    }

    50% {
        transform: scale(1) rotate(180deg);
        opacity: 1;
    }

    100% {
        transform: scale(0.5) rotate(360deg);
        opacity: 0.5;
    }
}

/* Base style for all outline badges */
.badge-outline {
    display: inline-block !important;
    padding: 0.4em 0.7em !important;
    /*font-size: 0.875rem !important;*/
    /*font-weight: 500 !important;*/
    border-radius: 0.25rem !important;
    text-align: center !important;
    white-space: nowrap !important;
    vertical-align: baseline !important;
    border: 1px solid transparent !important;
}

/* Outline success badge */
.badge-outline-success {
    color: #28a745 !important;
    border-color: #28a745 !important;
    background-color: transparent !important;
}

.badge-outline-success:hover {
    color: #fff !important;
    background-color: #28a745 !important;
    border-color: #28a745 !important;
}

/* Outline warning badge */
.badge-outline-warning {
    color: #ffc107 !important;
    border-color: #ffc107 !important;
    background-color: transparent !important;
}

.badge-outline-warning:hover {
    color: #fff !important;
    background-color: #ffc107 !important;
    border-color: #ffc107 !important;
}

/* Outline danger badge */
.badge-outline-danger {
    color: #dc3545 !important;
    border-color: #dc3545 !important;
    background-color: transparent !important;
}

.badge-outline-danger:hover {
    color: #fff !important;
    background-color: #dc3545 !important;
    border-color: #dc3545 !important;
}

/* Outline primary badge */
.badge-outline-primary {
    color: #007bff !important;
    border-color: #007bff !important;
    background-color: transparent !important;
}

.badge-outline-primary:hover {
    color: #fff !important;
    background-color: #007bff !important;
    border-color: #007bff !important;
}

/* Outline info badge */
.badge-outline-info {
    color: #17a2b8 !important;
    border-color: #17a2b8 !important;
    background-color: transparent !important;
}

.badge-outline-info:hover {
    color: #fff !important;
    background-color: #17a2b8 !important;
    border-color: #17a2b8 !important;
}

/* Outline dark badge */
.badge-outline-dark {
    color: #343a40 !important;
    border-color: #343a40 !important;
    background-color: transparent !important;
}

.badge-outline-dark:hover {
    color: #fff !important;
    background-color: #343a40 !important;
    border-color: #343a40 !important;
}

/* Outline secondary badge */
.badge-outline-secondary {
    color: #6c757d !important;
    border-color: #6c757d !important;
    background-color: transparent !important;
}

.badge-outline-secondary:hover {
    color: #fff !important;
    background-color: #6c757d !important;
    border-color: #6c757d !important;
}


.clickable-image {
    cursor: pointer;
    max-height: 150px;
}

#fullScreenView {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1050;
}

#fullScreenView img {
    max-width: 90%;
    max-height: 90%;
}

.dataTables_length {
    margin-right: 10px;
    /* Adjust as needed */
}

.dt-buttons {
    margin-left: 10px;
    /* Adjust as needed */
}

.paginate_button {
    width: auto !important;
}