/* Notification Badge Styles */
.notification-badge {
    background: #ff2c2c;
    color: #fff;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 10px;
    font-weight: 700;
    display: none; /* Hidden by default, shown when unread_count > 0 */
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(255, 44, 44, 0.4);
    border: 2px solid #1a1a1a;
    z-index: 10;
    flex-shrink: 0;
}

.dropdown-item#notificationBtn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* User dropdown badge for notifications */
.user-dropdown {
    position: relative;
}

.user-dropdown .notification-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff2c2c;
    color: #fff;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 10px;
    font-weight: 700;
    display: none; /* Hidden by default, shown when unread_count > 0 */
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(255, 44, 44, 0.4);
    border: 2px solid #1a1a1a;
    z-index: 10;
}

/* Notification badge above bell icon in dropdown */
.dropdown-item#notificationBtn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dropdown-item#notificationBtn .notification-badge {
    position: absolute;
    top: -5px;
    left: 12px;
    background: #ff2c2c;
    color: #fff;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 10px;
    font-weight: 700;
    display: none; /* Hidden by default, shown when unread_count > 0 */
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(255, 44, 44, 0.4);
    border: 2px solid #1a1a1a;
    z-index: 10;
}

/* Notification Popup Styles */
.notification-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 999999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.notification-popup.show {
    opacity: 1;
    pointer-events: auto;
}

/* Ensure popup is properly hidden when not shown */
.notification-popup:not(.show) {
    display: none !important;
    visibility: hidden !important;
}

/* Admin page specific fixes - ensure popup shows when needed */
.admin-dashboard .notification-popup {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 999999 !important;
}

.admin-dashboard .notification-popup.show {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}

.admin-dashboard .notification-popup.show .notification-popup-content {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    z-index: 1000000 !important;
}

.notification-popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    border: 2px solid #ff2c2c;
    border-radius: 16px;
    width: 95%;
    max-width: 700px;
    max-height: 85vh;
    box-shadow: 0 20px 60px rgba(255, 44, 44, 0.3);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.notification-popup-header {
    padding: 20px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 44, 44, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}


.notification-popup-header h3 {
    color: #ff2c2c;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.notification-popup-header h3 i {
    font-size: 16px;
}

.close-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
}

.close-btn:hover {
    background: rgba(255, 44, 44, 0.2);
    color: #ff2c2c;
    transform: scale(1.1);
}

.btn-mark-all {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.btn-mark-all:hover {
    background: rgba(0, 255, 0, 0.2);
    border-color: #00ff00;
    color: #00ff00;
}



.action-buttons .btn-mark-all {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.action-buttons .btn-mark-all:hover {
    background: rgba(34, 197, 94, 0.2);
    border-color: #22c55e;
    color: #22c55e;
}


.action-buttons .close-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
}

.action-buttons .close-btn:hover {
    background: rgba(255, 44, 44, 0.2);
    border-color: #ff2c2c;
    color: #ff2c2c;
    transform: scale(1.1);
}

.notification-popup-content {
    flex: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.notification-filters {
    padding: 15px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.action-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: rgba(255, 44, 44, 0.2);
    border-color: #ff2c2c;
    color: #ff2c2c;
}

.filter-btn.active {
    background: #ff2c2c;
    border-color: #ff2c2c;
    color: #fff;
}

.notifications-list {
    flex: 1;
    overflow-y: auto;
    padding: 0;
}

.notification-item {
    padding: 15px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}


.notification-item.unread {
    background: rgba(255, 44, 44, 0.08);
}


.notification-content {
    width: 100%;
}

.notification-title {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 5px 0;
    line-height: 1.3;
}

.notification-message {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.notification-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
}

.notification-time {
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
    font-weight: 500;
}

.notification-category {
    color: #fff;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.notification-category-system {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.notification-category-bugfix {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.notification-category-feature {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.notification-category-comments {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.notification-category-feedback {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

/* Feedback Detail Modal */
.feedback-detail-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.feedback-detail-modal .modal-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    border: 2px solid #ff2c2c;
    border-radius: 16px;
    width: 100%;
    max-width: 700px;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(255, 44, 44, 0.3);
}

.feedback-detail-modal .modal-header {
    padding: 20px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 44, 44, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.feedback-detail-modal .modal-header h3 {
    color: #ff2c2c;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feedback-detail-modal .close-btn {
    background: rgba(255, 44, 44, 0.9);
    color: #fff;
    border: 2px solid #ff2c2c;
    padding: 8px 12px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 32px;
    min-height: 32px;
}

.feedback-detail-modal .close-btn i {
    font-size: 16px;
    color: #fff;
    text-shadow: 0 0 4px rgba(0, 0, 0, 0.8);
}

.feedback-detail-modal .close-btn:hover {
    background: #ff2c2c;
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 44, 44, 0.4);
}

.feedback-detail-modal .modal-body {
    padding: 25px;
    max-height: 70vh;
    overflow-y: auto;
    scroll-behavior: smooth;
}

.feedback-detail-modal .feedback-details {
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feedback-detail-modal .feedback-meta-info {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.feedback-detail-modal .feedback-type,
.feedback-detail-modal .feedback-status,
.feedback-detail-modal .feedback-priority {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feedback-detail-modal .feedback-type.bug_report {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #fff;
}

.feedback-detail-modal .feedback-type.feature_request {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: #fff;
}

.feedback-detail-modal .feedback-type.general_feedback {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
}

.feedback-detail-modal .feedback-status.open {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #fff;
}

.feedback-detail-modal .feedback-status.in_progress {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: #fff;
}

.feedback-detail-modal .feedback-status.resolved {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
}

.feedback-detail-modal .feedback-status.closed {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    color: #fff;
}

.feedback-detail-modal .feedback-priority.low {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border: 1px solid #22c55e;
}

.feedback-detail-modal .feedback-priority.medium {
    background: rgba(251, 191, 36, 0.2);
    color: #fbbf24;
    border: 1px solid #fbbf24;
}

.feedback-detail-modal .feedback-priority.high {
    background: rgba(249, 115, 22, 0.2);
    color: #f97316;
    border: 1px solid #f97316;
}

.feedback-detail-modal .feedback-priority.critical {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 1px solid #ef4444;
}

.feedback-detail-modal .feedback-description-full {
    margin-bottom: 20px;
}

.feedback-detail-modal .feedback-description-full h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 10px 0;
}

.feedback-detail-modal .feedback-description-full p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.6;
}

.feedback-detail-modal .feedback-replies {
    margin-bottom: 20px;
}

.feedback-detail-modal .feedback-replies h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 15px 0;
}

.feedback-detail-modal .feedback-reply {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
}

.feedback-detail-modal .feedback-reply-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.feedback-detail-modal .feedback-reply-author {
    color: #ff2c2c;
    font-weight: 600;
    font-size: 14px;
}

.feedback-detail-modal .feedback-reply-time {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
}

.feedback-detail-modal .feedback-reply-message {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.5;
}

.feedback-detail-modal .feedback-reply-form {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 20px;
}

.feedback-detail-modal .feedback-reply-form h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 15px 0;
}

.feedback-detail-modal .feedback-reply-form textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 44, 44, 0.3);
    border-radius: 8px;
    padding: 12px;
    color: #ff2c2c;
    font-size: 14px;
    resize: vertical;
    min-height: 100px;
    margin-bottom: 15px;
}

.feedback-detail-modal .feedback-reply-form textarea:focus {
    outline: none;
    border-color: #ff2c2c;
    background: rgba(0, 0, 0, 0.9);
    box-shadow: 0 0 0 3px rgba(255, 44, 44, 0.1);
}

.feedback-detail-modal .feedback-reply-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.feedback-detail-modal .reply-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.feedback-detail-modal .btn-close {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.feedback-detail-modal .btn-close:hover {
    background: rgba(255, 44, 44, 0.2);
    border-color: #ff2c2c;
    color: #ff2c2c;
}

.feedback-detail-modal .btn-send {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.feedback-detail-modal .btn-send:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.feedback-detail-modal .feedback-closed-notice {
    background: rgba(107, 114, 128, 0.1);
    border: 1px solid rgba(107, 114, 128, 0.3);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    margin-top: 20px;
}

.feedback-detail-modal .feedback-closed-notice i {
    font-size: 24px;
    color: #6b7280;
    margin-bottom: 10px;
    display: block;
}

.feedback-detail-modal .feedback-closed-notice p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin: 0 0 15px 0;
    font-weight: 500;
}

.feedback-detail-modal .feedback-closed-notice .btn-close {
    background: rgba(107, 114, 128, 0.2);
    color: #9ca3af;
    border: 1px solid #6b7280;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.feedback-detail-modal .feedback-closed-notice .btn-close:hover {
    background: rgba(107, 114, 128, 0.3);
    border-color: #9ca3af;
    color: #d1d5db;
}

.feedback-detail-modal .error-message {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    padding: 40px 20px;
}

.feedback-detail-modal .error-message i {
    font-size: 48px;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
    display: block;
}

.feedback-detail-modal .error-message p {
    font-size: 14px;
    margin: 0;
    line-height: 1.4;
}

/* Mobile responsive for feedback detail modal */
@media (max-width: 768px) {
    .feedback-detail-modal .modal-content {
        width: 95%;
        max-height: 95vh;
    }
    
    .feedback-detail-modal .modal-header,
    .feedback-detail-modal .modal-body {
        padding: 15px 20px;
    }
    
    .feedback-detail-modal .reply-actions {
        flex-direction: column;
        gap: 8px;
    }
    
    .feedback-detail-modal .btn-close,
    .feedback-detail-modal .btn-send {
        width: 100%;
        justify-content: center;
    }

    .feedback-detail-modal .close-btn {
        min-width: 28px;
        min-height: 28px;
        padding: 4px 6px;
    }

    .feedback-detail-modal .close-btn i {
        font-size: 14px;
    }
}

.notification-actions {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.notification-action-btn {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.notification-action-btn:hover {
    background: rgba(255, 44, 44, 0.2);
    border-color: #ff2c2c;
    color: #ff2c2c;
}


.loading-spinner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    color: rgba(255, 255, 255, 0.7);
    gap: 15px;
}

.loading-spinner i {
    font-size: 24px;
    color: #ff2c2c;
}

.loading-spinner span {
    font-size: 14px;
    font-weight: 500;
}

.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.empty-state i {
    font-size: 48px;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
}

.empty-state h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 10px 0;
}

.empty-state p {
    font-size: 14px;
    margin: 0;
    line-height: 1.4;
}

/* Scrollbar styling for notifications list */
.notifications-list::-webkit-scrollbar {
    width: 6px;
}

.notifications-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

.notifications-list::-webkit-scrollbar-thumb {
    background: #ff2c2c;
    border-radius: 3px;
}

.notifications-list::-webkit-scrollbar-thumb:hover {
    background: #ff4444;
}

/* Notification Details Modal */
.notification-details-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.notification-details-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    border: 2px solid #ff2c2c;
    border-radius: 16px;
    width: 100%;
    max-width: 600px;
    max-height: 80vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(255, 44, 44, 0.3);
}

.notification-details-header {
    padding: 20px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 44, 44, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.notification-details-header h3 {
    color: #ff2c2c;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}

.close-details-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
}

.close-details-btn:hover {
    background: rgba(255, 44, 44, 0.2);
    color: #ff2c2c;
    transform: scale(1.1);
}

.notification-details-body {
    padding: 25px;
    overflow-y: auto;
    max-height: 60vh;
}

.notification-full-message {
    color: #fff;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.notification-url-section {
    margin: 20px 0;
    text-align: center;
}

.notification-url-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.notification-url-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    color: #fff;
    text-decoration: none;
}

.notification-details-meta {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.notification-url {
    color: rgba(59, 130, 246, 0.9);
    font-size: 12px;
    margin: 8px 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.notification-url i {
    color: #3b82f6;
    font-size: 11px;
}

.notification-url a {
    color: #3b82f6;
    text-decoration: none;
    word-break: break-all;
}

.notification-url a:hover {
    color: #60a5fa;
    text-decoration: underline;
}


/* Responsive design */
@media (max-width: 768px) {
    .notification-popup-content {
        width: 95%;
        max-height: 90vh;
    }
    
    .notification-popup-header,
    .notification-filters,
    .notification-popup-footer {
        padding: 15px 20px;
    }
    
    .notification-item {
        padding: 12px 20px;
    }
    
    .notification-filters {
        gap: 8px;
    }
    
    .filter-btn {
        padding: 6px 12px;
        font-size: 11px;
    }
    
    .notification-filters {
        flex-direction: column;
        gap: 10px;
    }
    
    .filter-buttons,
    .action-buttons {
        justify-content: center;
        width: 100%;
    }
    
    .action-buttons .btn-mark-all {
        flex: 1;
        justify-content: center;
    }

}
