/* Notification Bell Styles */
.nav-notification-wrapper {
    position: relative;
    display: inline-block;
    margin: 0 10px;
}
/* Add to notifications.css */

.notification-actions.match-actions {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    padding-top: 8px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.accept-match-btn, .reject-match-btn {
    flex: 1;
    padding: 6px 12px;
    border: none;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: all 0.2s ease;
}

.accept-match-btn {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
}

.accept-match-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

.reject-match-btn {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
}

.reject-match-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.3);
}

.notification-admin-note {
    font-size: 11px;
    color: #ffd966;
    margin-top: 5px;
    padding: 3px 8px;
    background: rgba(255, 217, 0, 0.1);
    border-radius: 4px;
    display: inline-block;
}

.notification-admin-note i {
    margin-right: 3px;
    font-size: 10px;
}
.nav-notification-bell {
    position: relative;
    background: none;
    border: none;
    color: #666;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-notification-bell:hover {
    color: #4361ee;
    background: rgba(67, 97, 238, 0.1);
}

.notification-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: #e74c3c;
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    border: 2px solid white;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(231, 76, 60, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(231, 76, 60, 0);
    }
}

/* Notification Dropdown */
.notification-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: -50px;
    width: 380px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
    overflow: hidden;
    border: 1px solid #e9ecef;
}

.notification-dropdown.active {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.notification-header {
    padding: 15px 20px;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
}

.notification-header h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
}

.notification-actions {
    display: flex;
    gap: 10px;
}

.notification-action-btn {
    background: none;
    border: none;
    color: #6c757d;
    cursor: pointer;
    padding: 5px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.notification-action-btn:hover {
    background: #e9ecef;
    color: #4361ee;
}

/* Notifications List */
.notifications-list {
    max-height: 400px;
    overflow-y: auto;
    background: white;
}

.notification-item {
    display: flex;
    padding: 15px 20px;
    border-bottom: 1px solid #f1f3f5;
    transition: background 0.3s ease;
    cursor: pointer;
    position: relative;
}

.notification-item:hover {
    background: #f8f9fa;
}

.notification-item.unread {
    background: #e3f2fd;
}

.notification-item.unread:hover {
    background: #d1e9fc;
}

.notification-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.notification-content {
    flex: 1;
}

.notification-title {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 4px;
    font-size: 0.95rem;
}

.notification-message {
    color: #6c757d;
    font-size: 0.85rem;
    margin-bottom: 4px;
    line-height: 1.4;
}

.notification-time {
    font-size: 0.75rem;
    color: #adb5bd;
    display: flex;
    align-items: center;
    gap: 5px;
}

.notification-time i {
    font-size: 0.7rem;
}

.notification-type-icon {
    position: absolute;
    bottom: 10px;
    right: 20px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
}

.notification-type-icon.message {
    background: #4361ee;
}

.notification-type-icon.like {
    background: #e74c3c;
}

.notification-type-icon.match {
    background: #2ecc71;
}

.notification-type-icon.system {
    background: #f39c12;
}

.notification-type-icon.payment {
    background: #9b59b6;
}

.notification-type-icon.reveal {
    background: #3498db;
}

/* Notification Footer */
.notification-footer {
    padding: 12px 20px;
    border-top: 1px solid #e9ecef;
    text-align: center;
    background: #f8f9fa;
}

.view-all-btn {
    background: none;
    border: none;
    color: #4361ee;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    background: rgba(67, 97, 238, 0.1);
}

/* Empty State */
.notifications-empty {
    padding: 40px 20px;
    text-align: center;
    color: #6c757d;
}

.notifications-empty i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #dee2e6;
}

.notifications-empty h4 {
    margin: 10px 0 5px;
    color: #2c3e50;
    font-size: 1rem;
}

.notifications-empty p {
    margin: 0;
    font-size: 0.85rem;
}

.notifications-loading {
    padding: 40px 20px;
    text-align: center;
    color: #6c757d;
}

.notifications-loading i {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #4361ee;
}

/* Notifications Modal */
.notifications-modal .modal-content {
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
}

.notifications-modal .modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 0;
}

.notifications-filter {
    padding: 15px 20px;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    background: none;
    border: 1px solid #dee2e6;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #6c757d;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: #f8f9fa;
    border-color: #4361ee;
}

.filter-btn.active {
    background: #4361ee;
    border-color: #4361ee;
    color: white;
}

.all-notifications-list {
    padding: 10px 0;
}

.notifications-modal .notification-item {
    padding: 15px 20px;
}

/* Notification Delete Button */
.notification-delete-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    color: #adb5bd;
    cursor: pointer;
    padding: 5px;
    border-radius: 4px;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 10;
}

.notification-item:hover .notification-delete-btn {
    opacity: 1;
}

.notification-delete-btn:hover {
    color: #e74c3c;
    background: rgba(231, 76, 60, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .notification-dropdown {
        position: fixed;
        top: 60px;
        right: 10px;
        left: 10px;
        width: auto;
        max-width: none;
    }
    
    .nav-notification-bell {
        padding: 6px;
    }
    
    .notification-badge {
        min-width: 16px;
        height: 16px;
        font-size: 0.6rem;
    }
    
    .notification-avatar {
        width: 40px;
        height: 40px;
    }
}