wasil-calculator 2.0

by velo_ninja

HTML

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Futuristic Production Calculator</title>
    <link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap">
    <style>
        body {
            font-family: 'Roboto', sans-serif;
            background-color: #2c3e50;
            padding: 20px;
            display: flex;
            justify-content: center;
            align-items: flex-start;
            min-height: 100vh;
            overflow-y: auto;
        }

        .container {
            position: relative;
            max-width: 800px;
            padding: 20px;
            background: white;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
            border-radius: 10px;
            text-align: center;
        }

        h1 {
            font-size: 28px;
            margin-bottom: 20px;
            color: #34495e;
            font-weight: bold;
        }

        h2 {
            font-size: 20px;
            margin-top: 20px;
            color: #34495e;
        }

        .calculator .row {
            margin: 10px 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .calculator label {
            flex: 1;
            text-align: left;
            color: #34495e;
        }

        .calculator input {
            padding: 10px;
            width: 200px;
            border: 1px solid #bdc3c7;
            border-radius: 5px;
            color: #34495e;
            font-size: 16px;
            transition: border-color 0.3s ease;
        }

        .calculator input:focus {
            border-color: #3498db;
            outline: none;
        }

        input[readonly] {
            background-color: #ecf0f1;
            color: #34495e;
        }

        .table-container {
            margin-top: 20px;
            overflow-x:...