.popup-bg {
    position:fixed;
    left:0;
    right:0;
    top:0;
    bottom:0;
    padding:0;
    margin:0;
    display:none;
    z-index: 3;
}
.popup{
    width:300px;
    margin:50px auto;
    display:none;
    overflow:hidden;
    cursor:auto !important;
}
.popup .close{
    position: absolute;
    right: 10px;
    top:20px;
    padding:5px;
    cursor:pointer;
    margin:3px;
}
.popup .title{
    width:100%;
    z-index:100;
    padding:5px;
}
.popup .content, .popup .bottom{
    padding:10px;
    text-align:center;
    width:100%;
    box-sizing:border-box;
}
.popup .content img.cargando{
    float:left;
    margin-right:5px;
}
.popup .bottom{
    padding:0;
}
.popup .bottom button{
    cursor:pointer;
}
@font-face {
    font-family: interRegular;
    src: url(../fonts/Inter-Regular.ttf);
    font-weight: bold;
}

@font-face {
    font-family: interBold;
    src: url(../fonts/Inter-Bold.ttf);
    font-weight: bold;
}

.popup-bg {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    padding: 0;
    margin: 0;
    display: none;
    z-index: 3;
}

.popup {
    width: 300px;
    margin: 50px auto;
    display: none;
    overflow: hidden;
    cursor: auto !important;
}

.popup .close {
    position: absolute;
    right: 10px;
    top: 20px;
    padding: 5px;
    cursor: pointer;
    margin: 3px;
}

.popup .title {
    width: 100%;
    z-index: 100;
    padding: 5px;
}

.popup .content,
.popup .bottom {
    padding: 5px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.popup .content img.cargando {
    float: left;
    margin-right: 5px;
}

.popup .bottom {
    padding: 0;
}

.popup .bottom button {
    cursor: pointer;
}

@media only screen and (max-width:799px) {
    .popup {
        transform: none !important;
    }

    .popup.page {
        position: fixed !important;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        margin: 45px 5px 5px 5px;
        width: auto !important;
        height: auto !important;
    }

    .popup.page .content {
        position: relative;
        padding: 10px;
        width: 100%;
        height: 100%;
        overflow-y: auto;
    }
}

@media only screen and (min-width:800px) {
    .popup.page {
        max-width: 800px;
        width: 95%;
        height: 90% !important;
        position: relative;
    }

    .popup .title {
        cursor: move !important;
    }
}

/* Modificaciones para la tarea COB-420 */

#notifications-popup {
    display: none;
    position: absolute;
    top: 30px;
    /* Ajusta según la posición de tu icono */
    right: 170px;
    /* Ajusta según la posición de tu icono */
    width: 440px;
    max-height: 345px;
    max-width: 440px;
    position: absolute;
    /* overflow-y: auto; */
    overflow-y: auto;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    z-index: 1000;
    /* Estilo del contenedor que tiene scroll */
    overflow-y: auto;
    /* Habilitar el scroll vertical */
    scrollbar-width: thin;
    /* Grosor del scrollbar */
    scrollbar-color: #CCCCCC transparent;
    /* Color del scrollbar */
}

#notifications-popup.visible {
    display: block;
}

.popup-header {
    padding: 10px;
    gap: 94px;
    font-family: 'interRegular', sans-serif;
    font-weight: 500px;
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 12px 16px 12px 16px;
}

.popup-close {
    position: absolute;
    top: 5px;
    right: 10px;
    cursor: pointer;
}

.notificacion-container .activo {
    font-weight: bold;
}

.toast-message {
    font-family: 'interRegular', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    padding: 10px;
}

.toast-date {
    font-family: 'interRegular', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #A5ACB8;
    padding: 10px;
}

.unread-circle {
    width: 8px;
    height: 8px;
    background-color: #90CDF4;
    border: 1px solid #90CDF4;
    border-radius: 50%;
    margin-left: 10px;
    top: 5px;
    left: 5px;
    display: inline-block;
    /* Asegura que los tamaños de ancho y alto se apliquen correctamente */
}

.tooltip-right {
    position: relative;
}

#notification-count {
    display: none;
}

#notification-count {
    position: absolute;
    width: 14px;
    height: 14px;
    background-color: #EB5757;
    border-radius: 50%;
    color: #FFFFFF;
    font-size: 11px;
    text-align: center;
    line-height: 14px;
    top: -5px;
    left: 8px;
}

/* Estilo específico para WebKit (Chrome, Safari, Edge) */
#notifications-popup::-webkit-scrollbar {
    width: 3px;
    /* Ancho del scrollbar */
}

#notifications-popup::-webkit-scrollbar-track {
    background: transparent;
    /* Color del fondo del scrollbar */
}

#notifications-popup::-webkit-scrollbar-thumb {
    background-color: rgba(204, 204, 204, 0.5);
    /* Color del thumb (barra deslizante) */
    border-radius: 3px;
    /* Radio de borde del thumb */
}

#notifications-popup::-webkit-scrollbar-thumb:hover {
    background-color: rgba(187, 187, 187, 0.5);
    /* Color del thumb al pasar el mouse */
}

.no-notifications {
    text-align: center;
    font-family: Inter, sans-serif;
    font-size: 14px;
    color: #333;
    padding: 10px;
}