/* Estilos generales */
.notification-bell-container {
    position: fixed;
    bottom: 50px; /* Subida la posición */
    right: 30px;
    z-index: 9999;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Campana y contador */
.notification-bell {
    position: relative;
    width: 50px;
    height: 50px;
    background-color: #FFA500; /* Nuevo color naranja */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.notification-bell:hover {
    background-color: #FF8C00; /* Naranja más oscuro al hover */
    transform: scale(1.05);
}

.notification-bell i {
    color: white;
    font-size: 22px;
}

.notification-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #e74c3c;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

/* Dropdown */
.notification-dropdown {
    position: absolute;
    bottom: 60px;
    right: 0;
    width: 350px;
    max-height: 500px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.notification-bell-container.active .notification-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Cabecera */
.notification-header {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.notification-header h3 {
    margin: 0;
    font-size: 16px;
    color: #2c3e50;
    font-weight: 600;
}

/* Lista de notificaciones */
.notification-list {
    max-height: 400px;
    overflow-y: auto;
    flex-grow: 1;
}

.notification-item {
    border-bottom: 1px solid #f5f5f5;
    transition: background-color 0.2s ease;
}

.notification-item.unread {
    background-color: #f8fafd;
}

.notification-link {
    display: block;
    padding: 15px;
    text-decoration: none;
    color: inherit;
}

.notification-link:hover {
    background-color: #f9f9f9;
}

.notification-item .notification-type {
    display: inline-block;
    font-size: 10px;
    padding: 2px 5px;
    border-radius: 3px;
    background-color: #3498db;
    color: white;
    margin-right: 5px;
    text-transform: uppercase;
}

.notification-item .notification-title {
    font-weight: 500;
    color: #2c3e50;
    margin: 5px 0;
    line-height: 1.4;
}

.notification-item .notification-time {
    font-size: 12px;
    color: #7f8c8d;
}

.notification-empty {
    padding: 20px;
    text-align: center;
    color: #95a5a6;
    font-size: 14px;
}