.background-div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: radial-gradient(circle at top center, red, black);
    /* Color y transparencia */
    z-index: -1;
    /* Para que esté detrás de todo el contenido */
    border-bottom-left-radius: 1.5rem;
    border-bottom-right-radius: 1.5rem;
    justify-content: center !important;
    text-align: center !important;
}

.background-title {
    position: relative;
    top: 90px;
}

/* Estilo para el div de carga */
#loading {
    position: fixed;
    /* Fija el div para que ocupe toda la pantalla */
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(to bottom, #FF0042, #850022, #800021);
    display: flex;
    /* Utiliza flexbox para centrar el spinner */
    justify-content: center;
    align-items: center;
    z-index: 9999;
    /* Asegura que esté por encima de todo el contenido */
}

/* Estilo para la imagen de carga 2*/
.loading-image2 {
    position: absolute;
    top: 40%;
    left: 35%;
    width: 30vw;
    /* Ajusta el tamaño de la imagen según tus necesidades */
    height: 18vh;
}

/* Estilo para el spinner */
.spinner {
    position: absolute;
    top: 60%;
    left: 45%;
    border: 16px solid #f3f3f3;
    /* Bordes del spinner */
    border-top: 16px solid #3498db;
    /* Color del borde superior */
    border-radius: 50%;
    /* Forma circular */
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
    /* Animación de giro */
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Oculta el contenido mientras se muestra el loading */
#content {
    display: none;
}

.modal-open .container-fluid,
.modal-open .container {
  -webkit-filter: blur(2px);
  -moz-filter: blur(2px);
  -o-filter: blur(2px);
  -ms-filter: blur(2px);
  filter: blur(2px);
}

/* Round Corner for TOP LEFT COLUMN */

table thead tr:first-child  th:first-child
{
    border-top-left-radius: 15px;
}

/* Round Corner for TOP RIGHT COLUMN */

table thead tr:first-child  th:last-child
{
    border-top-right-radius: 15px;
}

/* Round Corner for BOTTOM LEFT COLUMN */

table tbody tr:last-child td:first-child
{
    border-bottom-left-radius: 15px;
}

/* Round Corner for BOTTOM RIGHT COLUMN */

table tbody tr:last-child td:last-child
{
    border-bottom-right-radius: 15px;
}

@keyframes ring {
  0% { transform: rotate(0); }
  10% { transform: rotate(15deg); }
  20% { transform: rotate(-10deg); }
  30% { transform: rotate(5deg); }
  40% { transform: rotate(-5deg); }
  50% { transform: rotate(3deg); }
  60% { transform: rotate(-2deg); }
  100% { transform: rotate(0); }
}

.bell-ring {
  animation: ring 0.8s ease-in-out;
}

.list-group-flush::-webkit-scrollbar {
  width: 6px;
}
.list-group-flush::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 3px;
}