/* Comment Notifications Styles */

.notifications-dropdown .dropdown-menu {
    width: 360px;
    max-height: 480px;
    overflow-y: auto;
    background: rgba(18, 18, 18, 0.97);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    box-shadow: 0 16px 48px rgba(0,0,0,0.6);
    padding: 0;
    backdrop-filter: blur(12px);
}

/* Header del dropdown */
.notifications-dropdown .dropdown-header {
    padding: 0.85rem 1rem;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: rgba(255,255,255,.4);
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.notifications-dropdown .dropdown-header .btn-link {
    color: #0d6efd;
    font-size: .78rem;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 500;
}

.notifications-dropdown .dropdown-header .btn-link:hover {
    color: #3d8bfd;
}

/* Items */
.notification-item {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(255,255,255,.05);
    transition: background .15s;
    color: rgba(255,255,255,.75);
    cursor: pointer;
    white-space: normal;
}

.notification-item:last-child {
    border-bottom: none;
}

.notification-item:hover,
.notification-item:focus {
    background: rgba(255,255,255,.06);
    color: #fff;
}

.notification-item.unread {
    background: rgba(255,255,255,.04);
    border-left: 3px solid #0dcaf0;
}

.notification-item.unread:hover {
    background: rgba(255,255,255,.07);
}

.notification-content {
    font-size: .85rem;
    line-height: 1.4;
    margin-bottom: .2rem;
    color: rgba(255,255,255,.85);
}

.notification-item small {
    font-size: .72rem;
    color: rgba(255,255,255,.35);
}

/* "Ver todas" link */
.notifications-dropdown .dropdown-item.text-center {
    color: rgba(255,255,255,.5);
    font-size: .82rem;
}

.notifications-dropdown .dropdown-item.text-center:hover {
    background: rgba(255,255,255,.06);
    color: #fff;
}

/* Empty state */
.notifications-dropdown .dropdown-item.text-muted {
    color: rgba(255,255,255,.3) !important;
    font-size: .85rem;
}

/* Divider */
.notifications-dropdown .dropdown-divider {
    border-color: rgba(255,255,255,.06);
    margin: 0;
}

/* Badge "Nuevo" */
.notification-item .badge.bg-primary {
    background: rgba(13,202,240,.2) !important;
    color: #0dcaf0;
    font-size: .65rem;
    font-weight: 600;
    border: 1px solid rgba(13,202,240,.3);
}

/* Scrollbar */
.notifications-dropdown .dropdown-menu::-webkit-scrollbar { width: 4px; }
.notifications-dropdown .dropdown-menu::-webkit-scrollbar-track { background: transparent; }
.notifications-dropdown .dropdown-menu::-webkit-scrollbar-thumb { background: rgba(255,255,255,.12); border-radius: 4px; }
.notifications-dropdown .dropdown-menu::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,.2); }

/* Toast container */
.toast-container {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 1100;
    min-width: 300px;
}

@media (max-width: 576px) {
    .notifications-dropdown .dropdown-menu {
        width: 300px;
    }
}
