<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sticky Total</title>
<style>
/* Sticky Total Container */
#sticky-total {
position: fixed;
top: 10px;
right: 10px;
background-color: #f8f9fa;
border: 2px solid #ddd;
border-radius: 8px;
padding: 10px 15px;
font-family: Arial, sans-serif;
font-size: 16px;
color: #333;
z-index: 1000;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
</style>
</head>
<body>
<!-- Sticky Total -->
<div id="sticky-total">
Total: $<span id="total-amount">0.00</span>
</div>
<script>
// JavaScript to dynamically update the total (if needed)
let total = 0;
function updateTotal(amount) {
total = amount;
document.getElementById('total-amount').innerText = total.toFixed(2);
}
// Example: Update total dynamically (optional)
// Uncomment the line below to test dynamic updates
// updateTotal(100.50);
</script>
</body>
</html>