GST CalculatorGST Calculator
💡 GST Quick Info
GST (Goods and Services Tax) is a consumption-based tax levied on supply of goods and services in India.
Base Amount:
₹0.00
GST Amount:
₹0.00
Total Amount:
₹0.00
`;
const printWindow = window.open('', '_blank', 'width=800,height=600');
printWindow.document.write(printContent);
printWindow.document.close();
}function showNotification(message) {
const notification = document.createElement('div');
notification.style.cssText = `
position: fixed; top: 20px; right: 20px; z-index: 10000;
background: #4CAF50; color: white; padding: 12px 20px;
border-radius: 8px; font-size: 14px; box-shadow: 0 4px 12px rgba(0,0,0,0.2);
`;
notification.textContent = message;
document.body.appendChild(notification);
setTimeout(() => {
if (notification.parentNode) {
notification.parentNode.removeChild(notification);
}
}, 3000);
}