/*
Theme Name: Astra Child Theme
Author: Me
Description: This is astra child theme
Version: 1.0.0
Template: astra

This is the child theme for Astra theme, generated with Generate Child Theme plugin by catchthemes.

(optional values you can add: Theme URI, Author URI, License, License URI, Tags, Text Domain)
*/
.calculator {
            background-color: #fff;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 0 10px rgba(0,0,0,0.1);
			width:100%;
        }
        .calculator h2 {
            margin: 0 0 20px;
            font-size: 24px;
            text-align: center;
        }
        .calculator label {
            display: block;
            margin: 10px 0 5px;
            font-weight: bold;
        }
        .calculator input {
            width: 100%;
            padding: 10px;
            margin-bottom: 20px;
            border: 1px solid #ddd;
            border-radius: 4px;
            box-sizing: border-box;
        }
        .calculator button {
            width: 100%;
            padding: 10px;
            background-color: #F5895A;
            color: #fff;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 16px;
        }
        .calculator button:hover {
            background-color: #F69D76;
        }
        .calculator .result {
            margin-top: 20px;
            font-size: 18px;
            text-align: center;
        }