.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

#notification-box {
    text-align: justify;
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    max-height: 800px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
    z-index: 1001;
    animation: fadeIn 0.3s ease-in-out;
    padding: 20px;
}

.notification-header {
    display: flex;
    align-items: center;
    padding: 10px;
    background-color: #e47a01;
    color: white;
}

.header-image {
    width: 50px;
    height: auto;
    margin-right: 10px;
}

.notification-footer {
    padding: 10px;
    text-align: center;
    font-size: 12px;
    color: #888;
    border-top: 1px solid #ddd;
}

.notification-container {
    max-height: 70vh;
    overflow-y: auto;
    padding: 10px;
}

.notification {
    text-align: justify;
    padding: 15px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
    transition: background 0.3s;
}

.notification:hover {
    background: #f0f0f0;
}

.close-btn {
    background: none;
    border: none;
    font-size: 30px;
    position: absolute;
    top: 26px;
    right: 35px;
    cursor: pointer;
    color: rgb(0, 0, 0); /* Cambiar color del botón */
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -40%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}
