/* Styles for Peptide Dosage Calculator */
.calcufacil-peptide_dosage_calculator.calcufacil-container {
    max-width: 750px; margin: 25px auto; background: #fdfdfd; padding: 25px;
    border-radius: 10px; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: flex; flex-direction: row; flex-wrap: wrap; gap: 30px; font-family: 'Arial', sans-serif;
    border: 1px solid #E91E63; /* Pink accent for health/medical */
}
.calcufacil-peptide_dosage_calculator h2 {
    width: 100%; text-align: center; color: #E91E63; margin-bottom: 25px; font-size: 24px;
}
.calcufacil-peptide_dosage_calculator h3 {
    width: 100%; text-align: center; color: #C2185B; margin-top: 20px; margin-bottom: 15px; font-size: 18px;
    border-bottom: 1px solid #F8BBD0; padding-bottom: 10px;
}
.calcufacil-peptide_dosage_calculator .calcufacil-left.calculator-form {
    flex: 1; min-width: 280px; padding: 20px; background-color: #fff;
    border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.05); border: 1px solid #eee;
}
.calcufacil-peptide_dosage_calculator .calcufacil-right.results {
    flex: 1; min-width: 280px; background: #FCE4EC; /* Light Pink */ padding: 25px;
    border-radius: 8px; border: 1px solid #F8BBD0; box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    display: flex; flex-direction: column; justify-content: center; align-items: center;
}
.calcufacil-peptide_dosage_calculator .input-group { margin-bottom: 18px; }
.calcufacil-peptide_dosage_calculator label { display: block; font-weight: bold; color: #333; margin-bottom: 8px; font-size: 14px; }
.calcufacil-peptide_dosage_calculator input[type="text"],
.calcufacil-peptide_dosage_calculator input[type="number"] {
    width: 100%; padding: 10px 12px; border: 1px solid #F48FB1; /* Medium Pink border */
    border-radius: 5px; box-sizing: border-box; font-size: 15px; background: #FFF0F5; /* Very light pink background */
    font-family: sans-serif;
}
.calcufacil-peptide_dosage_calculator select {
    flex-grow: 0;
    width: auto;
    margin-left: 10px;
    padding: 10px 12px; border: 1px solid #F48FB1; border-radius: 5px; box-sizing: border-box;
    font-size: 15px; background: #FFF0F5; font-family: sans-serif;
}
.calcufacil-peptide_dosage_calculator input[type="text"]:focus,
.calcufacil-peptide_dosage_calculator input[type="number"]:focus,
.calcufacil-peptide_dosage_calculator select:focus {
    border-color: #E91E63;
    box-shadow: 0 0 0 2px rgba(233, 30, 99, 0.2);
    outline: none;
}
.calcufacil-peptide_dosage_calculator .note {
    font-size: 0.85em; color: #666; margin-top: 5px; line-height: 1.4;
}

.calcufacil-peptide_dosage_calculator button {
    background-color: #E91E63; /* Pink */ color: #fff; padding: 12px 25px;
    border: none; border-radius: 5px; cursor: pointer; font-size: 16px;
    width: 100%; transition: background-color 0.3s ease; font-weight: bold;
}
.calcufacil-peptide_dosage_calculator button:hover { background-color: #C2185B; /* Darker Pink */ }

/* Results Styling */
.calcufacil-peptide_dosage_calculator .results-header h2 {
    color: #C2185B; /* Darker Pink */ margin-bottom: 20px; font-size: 20px;
}
.calcufacil-peptide_dosage_calculator .initial-message {
    text-align: center; color: #777; font-style: italic; padding: 20px;
    background-color: #FFF8FB; border: 1px dashed #F0D0D8; border-radius: 5px;
}
.calcufacil-peptide_dosage_calculator .calculation-summary {
    width: 100%; text-align: center; margin-bottom: 25px;
}
.calcufacil-peptide_dosage_calculator .calculation-desc {
    font-size: 1.1em; color: #555; margin-bottom: 15px;
}
.calcufacil-peptide_dosage_calculator .main-result {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    background-color: #F8BBD0; /* Medium light Pink */ padding: 20px; border-radius: 8px;
    border: 1px solid #E91E63; font-size: 1.2em; color: #880E4F; /* Darkest Pink */
}
.calcufacil-peptide_dosage_calculator .main-result.final-result {
    background-color: #EC407A; /* More prominent pink */
    border-color: #D81B60;
    color: #FFFFFF;
    padding: 25px;
    font-size: 1.4em;
    margin-top: 20px;
}
.calcufacil-peptide_dosage_calculator .main-result span:first-child {
    font-weight: normal; font-size: 0.8em; color: inherit;
}
.calcufacil-peptide_dosage_calculator .main-result span:last-child {
    font-size: 2.2em; font-weight: bold; margin-top: 5px; color: inherit;
}
.calcufacil-peptide_dosage_calculator .math-notation {
    font-style: italic; font-size: 0.9em; color: #777; margin-top: 10px;
}
.calcufacil-peptide_dosage_calculator .errors {
    color: #D32F2F; background-color: #FFCDD2; border: 1px solid #EF9A9A; padding: 10px 15px; border-radius: 4px; margin-top: 15px;
    text-align: center;
}
.calcufacil-peptide_dosage_calculator .errors ul { list-style: none; padding: 0; margin: 0; }
.calcufacil-peptide_dosage_calculator .errors li { margin-bottom: 5px; }
.calcufacil-peptide_dosage_calculator .errors li:last-child { margin-bottom: 0; }

.calcufacil-peptide_dosage_calculator .disclaimer-box {
    margin-top: 20px; padding: 15px; background-color: #FFF0F5;
    border: 1px solid #F8BBD0; border-left: 5px solid #C2185B; /* Darker pink accent */
    border-radius: 8px; font-size: 0.88em; color: #555;
}
.calcufacil-peptide_dosage_calculator .disclaimer-box.critical h4 {
    color: #B71C1C;
}
.calcufacil-peptide_dosage_calculator .disclaimer-box ul {
    list-style: disc; margin-left: 20px; padding-left: 0; line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .calcufacil-peptide_dosage_calculator.calcufacil-container {
        flex-direction: column; gap: 20px; padding: 15px;
    }
    .calcufacil-peptide_dosage_calculator .calcufacil-left.calculator-form,
    .calcufacil-peptide_dosage_calculator .calcufacil-right.results {
        min-width: unset; width: 100%;
    }
}