/* Notification Bell System */
.notification-bell {
    position: relative;
    cursor: pointer;
    margin: 0 15px;
    padding: 8px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.notification-bell:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.notification-bell i {
    font-size: 1.2rem;
    color: #fff;
}

.notification-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ef4444;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
}

.notification-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    width: 350px;
    max-height: 400px;
    overflow: hidden;
    display: none;
    z-index: 1000;
}

.notification-header {
    padding: 15px 20px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.notification-header h4 {
    margin: 0;
    color: #1f2937;
    font-size: 1.1rem;
}

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

.notification-item {
    padding: 15px 20px;
    border-bottom: 1px solid #f3f4f6;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    transition: background-color 0.2s ease;
}

.notification-item:hover {
    background-color: #f9fafb;
}

.notification-item.unread {
    background-color: #eff6ff;
    border-left: 3px solid #3b82f6;
}

.notification-item i {
    color: #6b7280;
    margin-top: 2px;
}

.notification-item.unread i {
    color: #3b82f6;
}

.notification-item div p {
    margin: 0 0 4px 0;
    color: #1f2937;
    font-weight: 500;
    font-size: 0.9rem;
}

.notification-item div small {
    color: #6b7280;
    font-size: 0.8rem;
}

.notification-footer {
    padding: 12px 20px;
    border-top: 1px solid #e5e7eb;
    text-align: center;
}

.notification-footer a {
    color: #3b82f6;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.notification-footer a:hover {
    text-decoration: underline;
}