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

.wp-nod-calc-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-nod-calc-wrapper h2 { font-size: 20px !important; margin: 0 0 25px 0 !important; text-align: center !important; color: #333333 !important; }

/* Рабочая строка ввода */
.wp-nod-calc-wrapper .input-row {
    display: flex !important; justify-content: center !important; align-items: center !important; gap: 10px !important; margin-bottom: 25px !important;
}
.wp-nod-calc-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; padding: 0 5px !important;
}
.wp-nod-calc-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-nod-calc-wrapper button:hover { background-color: #0056b3 !important; }

/* Блок школьных столбиков */
.wp-nod-calc-wrapper .factor-tables-container {
    display: flex !important; justify-content: center !important; gap: 50px !important; margin-top: 15px !important; flex-wrap: wrap !important;
}
.wp-nod-calc-wrapper .factor-table {
    border-collapse: collapse !important; font-family: 'Courier New', Courier, monospace !important; font-size: 22px !important; font-weight: bold !important; margin: 0 !important; border: none !important;
}
.wp-nod-calc-wrapper .factor-table td {
    padding: 2px 12px !important; border: none !important; background: none !important; height: auto !important;
}
.wp-nod-calc-wrapper .factor-table td.left-side {
    border-right: 3px solid #111111 !important; /* Школьная вертикальная черта */
    text-align: right !important; color: #007bff;
}
.wp-nod-calc-wrapper .factor-table td.right-side {
    text-align: left !important; color: #dc3545; /* Красные простые множители */
}

/* Окно результатов под столбиками */
.wp-nod-calc-wrapper .output-container {
    width: 100% !important; background-color: #fafafa !important; border: 1px solid #ccc !important; border-radius: 6px !important; padding: 15px !important; margin-top: 25px !important; clear: both !important;
}
.wp-nod-calc-wrapper .step-title { font-size: 16px !important; font-weight: bold !important; color: #555555 !important; margin: 15px 0 5px 0 !important; }
.wp-nod-calc-wrapper .final-res { font-size: 20px !important; font-weight: bold !important; color: #28a745 !important; margin: 10px 0 !important; font-family: 'Courier New', Courier, monospace !important; }

@media (max-width: 480px) {
    .wp-nod-calc-wrapper .calculator-card { padding: 15px 5px !important; border-radius: 8px !important; }
    .wp-nod-calc-wrapper .input-row { flex-direction: row !important; flex-wrap: nowrap !important; gap: 6px !important; }
    .wp-nod-calc-wrapper input { width: 32% !important; font-size: 15px !important; }
    .wp-nod-calc-wrapper button { width: 36% !important; padding: 0 5px !important; font-size: 14px !important; }
    .wp-nod-calc-wrapper .factor-tables-container { gap: 25px !important; }
}

