.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: #fff;
}
.preloader .loading {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    font: 14px arial;
}

.dataTables_filter {
    display: none;
}

.dataTables_paginate {
    float: left;
}

.tooltip-container {
    position: relative;
    display: inline-block;
}

.tooltip-text {
    visibility: hidden;
    width: 100px; /* Set max-width to a suitable value */
    white-space: normal; /* Allow text to wrap */
    overflow-wrap: break-word; /* Allow long words to break and wrap */
    background-color: #333;
    color: #fff;
    text-align: center;
    align-items: center;
    border-radius: 6px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: 125%; /* Position the tooltip above the text */
    left: 50%;
    transform: translateX(-50%); /* Center the tooltip above the text */
    opacity: 0;
    transition: opacity 0.3s;
}

.tooltip-container:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

/* Responsiveness */
@media only screen and (max-width: 600px) {
    .tooltip-text {
        width: 100%;
        margin-left: 0;
        left: 0;
        bottom: 100%;
    }
}

.image-preview {
    text-align: center;
    margin-top: 10px;
}

#previewImage {
    max-width: 100%;
    object-fit: cover;
}

.upload-container {
    position: relative;
}

.thumbnail-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    /* border-radius: 50%; */
    border: 1px solid rgb(194, 194, 194);
}

.thumbnail-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail-container:hover .overlay {
    opacity: 1;
}


.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    cursor: pointer;
}

.profile-image-container:hover .overlay {
    opacity: 1;
}

.upload-button {
    padding: 100px 100px;
    margin: 5px 0 0 0;
    /* background-color: #3897f0; */
    border: none;
    border-radius: 5px;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.upload-button .icon {
    margin-right: 8px;
}

#uploadinput {
    display: none;
}

#drop-area {
    position: relative;
    border: 2px dashed #ccc;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
}

#upload-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #4CAF50;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

#fileInput {
    display: none;
}

#preview-container {
    margin-top: 20px;
    text-align: center;
}

#preview {
    max-width: 100%;
    max-height: 200px;
    border-radius: 8px;
    margin-bottom: 10px;
}
