/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Jul 09 2024 | 13:06:24 */
<style>
        body {

        }
        .or-calculator {
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            padding: 24px;
            width: 100%;
            max-width: 800px;
			font-family: Arial, sans-serif;
            background-color: #f3f4f6;
            margin: 0;
            padding: 20px;
            display: grid;
            justify-content: center;
            align-items: center;
        }
       .or-calculator h2 {
            color: #1f2937;
            font-size: 24px;
            margin-bottom: 16px;
        }
       .or-calculator .form-group {
            margin-bottom: 16px;
        }
       .or-calculator label {
            display: block;
            margin-bottom: 4px;
            color: #4b5563;
            font-size: 14px;
        }
       .or-calculator input {
            width: 100%;
            padding: 8px;
            border: 1px solid #d1d5db;
            border-radius: 4px;
            font-size: 16px;
        }
       .or-calculator button {
            width: 100%;
            padding: 10px;
            background-color: #4f46e5;
            color: white;
            border: none;
            border-radius: 4px;
            font-size: 16px;
            cursor: pointer;
            transition: background-color 0.3s;
        }
       .or-calculator button:hover {
            background-color: #4338ca;
        }
       .or-calculator #result {
            margin-top: 16px;
            font-size: 18px;
            font-weight: bold;
            text-align: center;
            color: #1f2937;
        }
    </style>