wasil calculator 1.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>
    <style>
        body {
            font-family: 'Roboto', sans-serif;
            background-color: #1b1f23;
            padding: 5px;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
        }
        .container {
            position: relative;
            max-width: 90vw;
            padding: 20px;
            background: linear-gradient(135deg, #2c3e50, #34e);
            box-shadow: 0 0 20px rgba(55, 255, 255, 0.8);
            border-radius: 20px;
            text-align: center;
            animation: fadeIn 0.5s ease forwards;
        }
        h1 {
            font-size: 25px;
            margin-bottom: 10px;
            color: #00ffff;
            text-shadow: 0 0 10px rgba(0, 255, 255, 0.7);
            letter-spacing: 2px;
            font-weight: bold;
        }
        .calculator .row {
            margin: 10px 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .calculator label {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            width: 100%;
            text-align: right;
            font-weight: bold;
            color: white;
            margin-right: 10px;
        }
        .calculator .icon {
            width: 30px;
            height: 30px;
            margin-left: 10px;
        }
        .calculator input {
            padding: 1px;
            width: 200px;
            background-color: #2c3e50;
            border: 1px solid #00ffff;
            border-radius: 5px;
            color: #fff;
            font-size: 16px;
            transition: box-shadow 0.3s ease;
        }
        .calculator input:focus {
            box-shadow: 0 0 15px...