/* Start custom CSS for html, class: .elementor-element-2bad192 */.calculator-container {
            max-width: auto;
            margin: 0 auto;
            background-color: #fff;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }

        .form-group {
            margin-bottom: 20px;
        }
        label {
            display: block;
            margin-bottom: 8px;
            font-weight: bold;
            color: #333;
        }
        input[type="number"], select {
            width: 100%;
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 4px;
            box-sizing: border-box; /* Importante para el padding */
            font-size: 1em;
        }
        button {
            width: 100%;
            padding: 12px;
            background-color: #e3165b;
            color: white;
            border: none;
            border-radius: 4px;
            font-size: 1.1em;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        button:hover {
            background-color: #c7124e;
        }
        .results-section {
            margin-top: 30px;
            padding: 20px;
            border: 1px solid #ddd;
            border-radius: 4px;
            background-color: #f9f9f9;
        }
        .result-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            padding-bottom: 5px;
            border-bottom: 1px dashed #eee;
            font-size: 1.1em;
        }
        .result-item strong {
            color: #303ab2;
        }
        .total-result {
            margin-top: 15px;
            font-size: 1.3em;
            font-weight: bold;
            color: #e3165b;
            padding-top: 10px;
            border-top: 2px solid #e3165b;
        }/* End custom CSS */