        .asp-calculator {
            max-width: 560px !important;
            background: #e9e6e6 !important;
            padding: 20px !important;
            border-radius: 16px !important;
            box-shadow: 0 10px 25px rgba(0,0,0,.08)!important;
            direction: rtl !important;
        }
        .asp-row {
            display: flex;
            gap: 10px;
            margin-bottom: 10px;
        }
        .asp-row input {
            flex: 1 !important;
            padding: 8px !important;
            border-radius: 10px !important;
            border: 1px solid #ddd !important;
        }
        .asp-calculator button {
            width: 100%;
            padding: 10px;
            background: #3ec6a0;
            color: #fff;
            border: none;
            border-radius: 12px;
            cursor: pointer;
        }
        .asp-result {
            margin-top: 12px;
            padding: 10px;
            background: #f0faf6;
            border-radius: 10px;
            text-align: center;
            color: #ef0c3e;
            font-weight: 800;
        }