/* === ИЗОЛИРОВАННЫЕ СТИЛИ КАЛЬКУЛЯТОРА ДЕСЯТИЧНЫХ ДРОБЕЙ СТОЛБИКОМ === */
.wp-dec-col-wrapper, .wp-dec-col-wrapper * { 
    box-sizing: border-box !important; 
    line-height: normal !important;
}
.wp-dec-col-wrapper {
    width: 100% !important; display: flex !important; justify-content: center !important; margin: 20px 0 !important;
}
.wp-dec-col-wrapper p { margin: 0 !important; padding: 0 !important; display: inline !important; line-height: normal !important; }
.wp-dec-col-wrapper br { display: none !important; margin: 0 !important; padding: 0 !important; height: 0 !important; }

.wp-dec-col-wrapper .calculator-card {
    width: 100% !important; max-width: 600px !important; background: #ffffff !important; padding: 25px; 
    border-radius: 12px !important; box-shadow: 0 4px 15px rgba(0,0,0,0.08) !important; border: 1px solid #e2e8f0 !important;
}
.wp-dec-col-wrapper h2 { font-size: 20px !important; margin: 0 0 25px 0 !important; text-align: center !important; color: #333333 !important; }

/* Табличная сетка рабочей строки ввода */
.wp-dec-col-wrapper .calc-table-layout,
.wp-dec-col-wrapper .calc-table-layout tr,
.wp-dec-col-wrapper .calc-table-layout td {
    border: none !important; border-bottom: none !important; border-top: none !important; border-left: none !important; border-right: none !important; box-shadow: none !important;
}
.wp-dec-col-wrapper .calc-table-layout { width: auto !important; margin: 0 auto !important; border-collapse: collapse !important; }
.wp-dec-col-wrapper .calc-table-layout td { padding: 0 6px !important; vertical-align: middle !important; background: none !important; height: 50px !important; }

/* Поля ввода и селекторы */
.wp-dec-col-wrapper input {
    width: 130px !important; height: 42px !important; font-size: 16px !important; text-align: center !important;
    border: 1px solid #ccc !important; border-radius: 6px !important; background: #ffffff !important;
}
.wp-dec-col-wrapper select {
    width: 55px !important; height: 42px !important; font-size: 18px !important; font-weight: bold !important; text-align: center !important; 
    border: 1px solid #ccc !important; border-radius: 6px !important; background: #ffffff !important; padding: 0 !important;
}
.wp-dec-col-wrapper button {
    background-color: #007bff !important; color: #ffffff !important; border: none !important; border-radius: 6px !important;
    font-size: 16px !important; font-weight: bold !important; height: 42px !important; padding: 0 20px !important; cursor: pointer !important;
}
.wp-dec-col-wrapper button:hover { background-color: #0056b3 !important; }

/* Кнопка сброса */
.wp-dec-col-wrapper .reset-btn {
    background-color: #6c757d !important; color: white !important; font-size: 14px !important; height: 34px !important; 
    padding: 0 15px !important; border: none !important; border-radius: 4px !important; cursor: pointer !important;
}
.wp-dec-col-wrapper .reset-btn:hover { background-color: #5a6268 !important; }

/* Окно результатов под чертой */
.wp-dec-col-wrapper .output-container { width: 100% !important; background-color: #fafafa !important; border: 1px solid #ccc !important; border-radius: 6px !important; padding: 15px !important; margin-top: 20px !important; overflow-x: auto !important; clear: both !important; }
.wp-dec-col-wrapper .step-text-title { font-size: 16px !important; font-weight: bold !important; color: #555555 !important; margin-top: 15px !important; margin-bottom: 5px !important; }
.wp-dec-col-wrapper .math-box { font-family: 'Courier New', Courier, monospace !important; font-size: 22px !important; line-height: 1.4 !important; display: inline-block !important; white-space: pre !important; color: #111111 !important; margin-top: 5px !important; }
.wp-dec-col-wrapper .inline-result { margin-top: 15px !important; padding-top: 15px !important; border-top: 1px dashed #ccc !important; font-size: 18px !important; font-weight: bold !important; color: #333 !important; }

@media (max-width: 480px) {
    .wp-dec-col-wrapper .calculator-card { padding: 10px 4px !important; border-radius: 8px !important; }
    .wp-dec-col-wrapper .calc-table-layout td { padding: 0 2px !important; }
    .wp-dec-col-wrapper input { width: 95px !important; font-size: 15px !important; }
    .wp-dec-col-wrapper button { padding: 0 10px !important; font-size: 14px !important; }
}
