/* SoapCalc Pro 3 стили */
#soapcalc-pro3-safety {
    background: #fff3e0 !important;
    border: 4px solid #d32f2f !important;
    border-radius: 10px !important;
    padding: 20px !important;
    margin-bottom: 30px !important;
}
#soapcalc-pro3-safety h2 { color: #b71c1c; }
#soapcalc-pro3-safety ul { padding-left: 20px; }
.ingredient-group { margin-bottom: 20px; padding: 15px; border: 1px solid #ddd; border-radius: 5px; }
.ingredient-group select, .ingredient-group input { margin-right: 5px; }
.item { display: flex; justify-content: space-between; padding: 5px 0; border-bottom: 1px solid #eee; }
.remove-oil, .remove-additive, .remove-safe { color: #d32f2f; cursor: pointer; font-weight: bold; }
#last-recipes { margin-top: 20px; border-top: 2px solid #ccc; padding-top: 10px; }

.soapcalc-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    width: 100%;
    margin: 0 auto;
    align-items: flex-start;
    position: relative;
}
.soapcalc-left {
    flex: 0 0 50%;
    max-width: 50%;
    padding-right: 20px;
    box-sizing: border-box;
}
.soapcalc-right {
    flex: 0 0 50%;
    max-width: 50%;
    position: sticky;
    top: 0;
    align-self: flex-start;
    height: 100vh;
    overflow-y: auto;
    padding: 0 20px 20px 20px;
    box-sizing: border-box;
    background: #fff;
}
.soapcalc-right h3 {
    margin-top: 0;
    margin-bottom: 15px;
}
.soapcalc-right div {
    margin-bottom: 20px;
}
#result-content .result-section {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}
#result-content .result-section:last-child {
    border-bottom: none;
}
#result-content h4 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #333;
}
#result-content ul.result-list {
    margin: 0;
    padding-left: 20px;
}
#result-content ul.result-list li {
    list-style-type: disc;
    padding: 3px 0;
}
#result-content .result-table {
    width: 100%;
    border-collapse: collapse;
}
#result-content .result-table td {
    padding: 6px 8px;
    border-bottom: 1px solid #eee;
}
#result-content .result-table tr:last-child td {
    border-bottom: none;
}
@media (max-width: 768px) {
    .soapcalc-left, .soapcalc-right {
        flex: 100%;
        max-width: 100%;
        position: static;
        height: auto;
        overflow-y: visible;
        padding: 0;
    }
    .soapcalc-left {
        padding-right: 0;
    }
}
