
/* Add to Watchlist Button Styling */
.stock-card {
    position: relative;
}

.add-to-watchlist-btn {
    position: absolute;
    top: 10px;
    right: 10px; /* Changed from left to right */
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #667eea;
    background: white;
    color: #667eea;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    line-height: 1;
    padding: 0;
}

.add-to-watchlist-btn:hover {
    background: #667eea;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.add-to-watchlist-btn:active {
    transform: scale(0.95);
}

/* Notification styling */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #34c759;
    color: white;
    padding: 16px 24px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    font-weight: 500;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
}

.notification.show {
    opacity: 1;
    transform: translateY(0);
}
