/* FLOATING ACTION BUTTONS */
.floating-btn-container {
    position: relative;
}

.floating-btn {
    background-color: #635bff;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 10;
    height: 50px;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icons-container {
    display: flex;
    flex-direction: column;
    position: fixed;
    bottom: 100px;
    right: 30px;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s, visibility 0.3s;
}

.icon {
    background-color: #635bff;
    color: white;
    margin: 10px 0;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    text-align: center;
    display: block;
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon:hover {
    background-color: #0056b3;
}

*[data-permission],
*[data-role] {
    display: none !important;
}

/* .simplebar-content-wrapper{
    display:none;
} */


/* Spinner rotation */
@keyframes custom-spinner {
    0% {
        transform: rotate(0deg);
    }

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

/* Loader style */
custom-input-loading {
    background-image:
        url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50'><circle cx='25' cy='25' r='20' stroke='%23333' stroke-width='4' fill='none' stroke-linecap='round' stroke-dasharray='31.4 31.4' transform='rotate(72)'/></svg>");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 18px 18px;
    animation: custom-spinner 1s linear infinite;
    color: gray;
}