/* Notification Center Styles - Notion Style */

.notification-btn {
    position: relative;
}

.notification-badge {
    position: absolute;
    top: 4px;
    right: 4px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    background: var(--icon-red, #E03E3E);
    border-radius: 9px;
    font-size: 11px;
    font-weight: 600;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    animation: none;
}

.notification-dropdown {
    padding: 0 !important;
    border: 1px solid var(--theme-border, #2a2a2a) !important;
    background: var(--theme-bg-card, #151515) !important;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4) !important;
    border-radius: 8px !important;
}

.notification-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    border-bottom: 1px solid var(--theme-border, #2a2a2a);
    background: var(--theme-bg-elevated, #0e0e0e);
}

.notification-header h6 {
    font-size: 14px;
    font-weight: 600;
    color: var(--theme-text-primary, #f5f5f5);
}

.notification-header .btn-link {
    font-size: 12px;
    text-decoration: none;
    padding: 0;
}

.notification-list {
    max-height: 360px;
    overflow-y: auto;
}

.notification-list::-webkit-scrollbar {
    width: 4px;
}

.notification-list::-webkit-scrollbar-track {
    background: transparent;
}

.notification-list::-webkit-scrollbar-thumb {
    background: #2a2a2a;
    border-radius: 2px;
}

.notification-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 16px;
    border-bottom: 1px solid #2a2a2a;
    cursor: pointer;
    transition: background 0.15s ease;
}

.notification-item:hover {
    background: #1a1a1a;
}

.notification-item.unread {
    background: #0e0e0e;
}

.notification-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 14px;
}

.notification-icon.success {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
}

.notification-icon.info {
    background: rgba(46, 170, 220, 0.15);
    color: var(--icon-blue, #2EAADC);
}

.notification-icon.warning {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
}

.notification-icon.error {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

.notification-content {
    flex: 1;
    min-width: 0;
}

.notification-title {
    font-size: 13px;
    font-weight: 500;
    color: #f5f5f5;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.notification-message {
    font-size: 12px;
    color: #cfcfcf;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.notification-time {
    font-size: 11px;
    color: #6f6f6f;
    margin-top: 4px;
}

.notification-empty {
    padding: 40px 20px;
    text-align: center;
    color: #6f6f6f;
}

.notification-empty i {
    font-size: 32px;
    margin-bottom: 12px;
    opacity: 0.5;
}

.notification-empty p {
    margin: 0;
    font-size: 13px;
}

.notification-footer {
    padding: 12px 16px;
    border-top: 1px solid #2a2a2a;
    background: #0e0e0e;
}

/* Light theme */
    background: #ffffff !important;
    border-color: #e5e5e5 !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12) !important;
}

    border-color: #e5e5e5;
}

    color: #111111;
}

    background: #f5f5f5;
}

    background: #fafafa;
}

    border-color: #ebebeb;
}

    color: #111111;
}

    color: #2b2b2b;
}

    color: #6f6f6f;
}

    color: #6f6f6f;
}

    border-color: #e5e5e5;
    background: #fafafa;
}
