.Aos_Calculator{
	margin-bottom: 20px
}   

.Aos_calculator-container {
            background: #2a2d30;
            border-radius: 6px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgb(12 12 12 / 72%);
        }

        .Aos_calculator_header {
            background: linear-gradient(135deg, #f9a321, #d7a65e);
            color: white;
            padding: 1rem;
            position: relative;
            margin: 0;
            border-radius: 5px 5px 0px 0px;
            margin-bottom: 20px;
        }

        .Aos_calculator_header h2 {
            margin-bottom: 0px;
        }

        .Aos_body_Calculator {
            padding: 1.5rem;
        }

        .Aos_input-group {
            margin-bottom: 1.8rem;
            position: relative;
        }

        .Aos_input-group label {
            font-weight: 600;
            color: #d3d3d3;
            margin-bottom: 8px;
            display: block;
            font-size: 0.9rem;
        }

        .Aos_input-with-unit {
            display: flex;
            gap: 12px;
            align-items: center;
        }

        .form-control {
            background-color: #3c3f42 !important;
            color: #ccc !important;
            border: 1px solid #495057 !important;
            border-radius: 5px !important;
			padding: 5px !important;
        }

        .form-control::placeholder {
            color: #a0aec0 !important;
            opacity: 1 !important;
        }

        .form-control:focus {
            border-color: #7f96ff;
            box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0) !important;
            background: white;
        }

        .form-control[readonly] {
            background: linear-gradient(90deg, #000000 0%, #70707b 100%);
            border-color: #cbd5e0;
            color: #4a5568;
            font-weight: 600;
        }

        .form-select {
            background-color: #3c3f42 !important;
            color: #ccc !important;
            border: 1px solid #495057 !important;
            border-radius: 5px !important;
            box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0) !important;
            width: 40%;
            transition: all 0.3s ease;
        }

        .form-select:focus {
            border-color: #667eea;
            box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
            outline: none;
        }

        .btn {
            border-radius: 12px;
            padding: 14px 35px;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
            border: none;
            margin: 8px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .btn-primary {
            background: linear-gradient(135deg, #ff8e22 0%, #e1b37c 100%);
            color: white;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
        }

        .btn-secondary {
            background: linear-gradient(135deg, #ff4545 0%, #ff1515 100%);
            color: white;
        }

        .btn-secondary:hover {
            transform: translateY(-3px);
        }

        .Aos_calculation-steps {
            background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
            border-radius: 5px;
            padding: 2rem;
            margin-top: 2.5rem;
            border: 1px solid #e2e8f0;
            display: none;
        }

        .Aos_calculation-steps.show {
            display: block;
            animation: fadeInUp 0.7s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .step {
            margin-bottom: 1.2rem;
            padding: 1rem;
            background: white;
            border-radius: 12px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
            border-left: 5px solid #667eea;
            transition: transform 0.2s ease;
        }

        .step:hover {
            transform: translateX(5px);
        }

        .step h5 {
            color: #4a5568;
            margin-bottom: 0.6rem;
            font-weight: 700;
            font-size: 1.1rem;
        }

        .step p {
            margin: 0;
            color: #718096;
            font-family: 'Courier New', monospace;
            font-size: 15px;
            line-height: 1.5;
        }

        .result {
            background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
            color: white;
            padding: 1rem;
            border-radius: 5px;
            text-align: center;
            font-size: 20px;
            font-weight: 700;
            margin-top: 1.5rem;
            box-shadow: 0 6px 20px rgba(72, 187, 120, 0.4);
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }

        .error {
            background: linear-gradient(135deg, #f56565 0%, #e53e3e 100%);
            color: white;
            padding: 1.2rem;
            border-radius: 5px;
            text-align: center;
            font-size: 16px;
            font-weight: 600;
            box-shadow: 0 4px 15px rgba(245, 101, 101, 0.4);
        }

        .Aos_button-group {
            display: flex;
            gap: 15px;
            justify-content: center;
            margin: 30px 0;
        }

        .Aos_semicircle-visual {
            text-align: center;
            margin: 1.5rem 0;
            padding: 1rem;
            background: rgba(255, 255, 255, 0.8);
            border-radius: 12px;
            border: 2px dashed #cbd5e0;
        }

        .Aos_formula-box {
            background: linear-gradient(135deg, #edf2f7 0%, #e2e8f0 100%);
            border-radius: 5px;
            padding: 1.2rem;
            margin: 1.5rem 0;
            border: 1px solid #8db0d7;
        }

        .Aos_formula-box h6 {
            color: #4a5568;
            font-weight: 700;
            margin-bottom: 0.8rem;
            text-align: center;
        }

        .Aos_formula {
            font-family: 'Courier New', monospace;
            font-size: 16px;
            color: #2d3748;
            text-align: center;
            font-weight: 600;
        }

        .Aos_info-note {
            background: rgba(66, 153, 225, 0.1);
            border: 1px solid rgba(66, 153, 225, 0.3);
            border-radius: 2px;
            padding: 1rem;
            margin-bottom: 1.5rem;
            color: #b3cef1;
            font-size: 14px;
            text-align: center;
        }