/* Animación para girar el icono en hover */
.icon-transition {
    transition: transform 0.5s ease;
}

/* Al hacer hover en el botón, el icono 1 gira 360 grados */
.hover\:icon-rotate:hover .icon-transition {
    transform: rotate(360deg);
}

/* Estilo para el enlace activo sección de admin */
.active {
    color: #93c5fd;
}

/* Efecto en el SVG cuando el enlace está activo */
.active svg {
    color: #93c5fd;
    transition: transform 0.3s ease, color 0.3s ease;
}


/* Aplica el estilo al label si el radio button está marcado */
input[type="radio"]:checked+label {
    color: #4f46e5;
    /* Color indigo */
    font-weight: 400;
    border-bottom: 2px solid #4f46e5;
}

/* Efecto para el ícono dentro del span (opcional) */
a span svg {
    transition: transform 0.3s ease;
}

a:hover span svg {
    transform: scale(1.1);
    /* Aumenta el tamaño del ícono en hover */
}


.buttom-custom-scrollbar thead th,
.buttom-custom-scrollbar td {
    color: #374151 !important;
    /* Mantener el color original */
}


/* Prevenir selección y efectos durante el drag */
.buttom-custom-scrollbar.dragging * {
    user-select: none;
    /* Evitar selección durante el drag */
    color: inherit;
    /* Evitar cambios de color */
}

/* Estilos personalizados DataTables */
.dataTables_wrapper .dataTables_filter input {
    border: 1px solid #ffffff !important;
    /* Borde oscuro */
    border-radius: 8px !important;
    margin-bottom: 20px;
}

/* Cambia el color del texto en el selector de cantidad de registros */
.dataTables_wrapper .dataTables_length select {
    color: gray !important;
    border: 1px solid #444 !important;
    border-radius: 8px !important;
}

/* Estilo de los botones de paginación */
.dataTables_wrapper .dataTables_paginate .paginate_button {
    border: 1px solid #ffffff !important;
    padding: 6px 12px !important;
    margin: 10px !important;
    border-radius: 8px !important;
}

/* Separa los elementos de la tabla de los controles */
.dataTables_wrapper .dataTables_info,
.dataTables_wrapper .dataTables_length {
    margin-bottom: 15px !important;
}
/*remove custom style*/
.circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.circles li {
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    animation: animate 25s linear infinite;
    bottom: -150px;
}

.circles li:nth-child(1) {
    left: 25%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}


.circles li:nth-child(2) {
    left: 10%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
    animation-duration: 12s;
}

.circles li:nth-child(3) {
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
}

.circles li:nth-child(4) {
    left: 40%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 18s;
}

.circles li:nth-child(5) {
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
}

.circles li:nth-child(6) {
    left: 75%;
    width: 110px;
    height: 110px;
    animation-delay: 3s;
}

.circles li:nth-child(7) {
    left: 35%;
    width: 150px;
    height: 150px;
    animation-delay: 7s;
}

.circles li:nth-child(8) {
    left: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 15s;
    animation-duration: 45s;
}

.circles li:nth-child(9) {
    left: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
    animation-duration: 35s;
}

.circles li:nth-child(10) {
    left: 85%;
    width: 150px;
    height: 150px;
    animation-delay: 0s;
    animation-duration: 11s;
}

@keyframes animate {

    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }

    100% {
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }

}

.triangle {
    border-top: 60rem solid #fff;
    border-left: 25rem solid transparent;
}

.truncate-user-sidebar {
    display: block;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color 0.2s ease-in-out;
}
