/* Shared Notification Styles */

/* Notification Container */
.notification-container {
    position: relative;
}

.notification-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #e5e5e5;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.notification-btn:hover {
    border-color: #d0d0d0;
    background: #f8f8f8;
}

.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4444;
    color: white;
    font-size: 11px;
    font-weight: 500;
    padding: 2px 5px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
}

.notification-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 360px;
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

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

.notification-header h3 {
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

.mark-all-read {
    background: none;
    border: none;
    color: #666;
    font-size: 13px;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.2s;
}

.mark-all-read:hover {
    background: #f5f4f0;
    color: #1a1a1a;
}

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

.notification-item {
    padding: 16px 20px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: background 0.2s;
}

.notification-item:hover {
    background: #f8f8f8;
}

.notification-item.unread {
    background: #f5f4f0;
}

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

.notification-content h4 {
    font-size: 14px;
    font-weight: 500;
    margin: 0 0 4px 0;
    color: #1a1a1a;
}

.notification-content p {
    font-size: 13px;
    color: #666;
    margin: 0 0 4px 0;
}

.notification-time {
    font-size: 12px;
    color: #999;
}

.notification-empty {
    padding: 60px 20px;
    text-align: center;
    color: #999;
}

.notification-empty svg {
    margin-bottom: 16px;
}

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