.notification {
        position: relative;
    }

    .notification-dropdown {
        position: absolute;
        top: 30px;
        right: 0;
        background-color: white;
        border: 1px solid #ccc;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        width: 300px;
        display: none;
        flex-direction: column;
        z-index: 1110;
        border-radius: 8px;
        padding: 8px 0;
    }

    /* Clase para mostrar el dropdown */
    .notification-dropdown.show {
        display: flex;
    }

    .notification-item {
        padding: 12px 16px;
        font-size: 0.9rem;
        color: #333;
        border-bottom: 1px solid #eee;
    }

    .notification-item:last-child {
        border-bottom: none;
    }

    .notification-title {
        font-weight: bold;
        margin-bottom: 4px;
    }

    .notification-desc {
        font-size: 0.85rem;
        margin-bottom: 4px;
        color: #555;
    }

    .notification-meta {
        font-size: 0.75rem;
        color: #888;
        margin-bottom: 6px;
    }

    .notification-link {
        font-size: 0.8rem;
        color: #007bff;
        text-decoration: none;
    }