/* Styles for Logarithm and Antilogarithm Calculator */
.calcufacil-logarithm_antilogarithm_calculator.calcufacil-container {
    max-width: 800px; 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 #e0e0e0;
}
.calcufacil-logarithm_antilogarithm_calculator h2 {
    width: 100%; text-align: center; color: #00bcd4; /* Cyan theme */ margin-bottom: 25px; font-size: 24px;
}
.calcufacil-logarithm_antilogarithm_calculator .calcufacil-left.calculator-form {
    flex: 1; min-width: 300px; padding: 20px; background-color: #fff;
    border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.05); border: 1px solid #eee;
}
.calcufacil-logarithm_antilogarithm_calculator .calcufacil-right.results {
    flex: 1; min-width: 300px; background: #e0f7fa; /* Light cyan */ padding: 25px;
    border-radius: 8px; border: 1px solid #b2ebf2; box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    display: flex; flex-direction: column; justify-content: center; align-items: center;
}
.calcufacil-logarithm_antilogarithm_calculator .input-group { margin-bottom: 18px; }
.calcufacil-logarithm_antilogarithm_calculator label { display: block; font-weight: bold; color: #333; margin-bottom: 8px; font-size: 14px; }
.calcufacil-logarithm_antilogarithm_calculator input[type="text"],
.calcufacil-logarithm_antilogarithm_calculator select {
    width: 100%; padding: 10px 12px; border: 1px solid #80deea; /* Medium cyan border */
    border-radius: 5px; box-sizing: border-box; font-size: 15px; background: #e0f7fa; /* Very light cyan background */
    font-family: sans-serif;
}
.calcufacil-logarithm_antilogarithm_calculator input[type="text"]:focus,
.calcufacil-logarithm_antilogarithm_calculator select:focus {
    border-color: #00bcd4;
    box-shadow: 0 0 0 2px rgba(0, 188, 212, 0.2);
    outline: none;
}
.calcufacil-logarithm_antilogarithm_calculator .note {
    font-size: 0.85em; color: #666; margin-top: 5px; line-height: 1.4;
}

.calcufacil-logarithm_antilogarithm_calculator button {
    background-color: #00bcd4; /* Cyan */ 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-logarithm_antilogarithm_calculator button:hover { background-color: #0097a7; /* Darker Cyan */ }

/* Results Styling */
.calcufacil-logarithm_antilogarithm_calculator .results-header h2 {
    color: #0097a7; /* Darker Cyan */ margin-bottom: 20px; font-size: 20px;
}
.calcufacil-logarithm_antilogarithm_calculator .initial-message {
    text-align: center; color: #777; font-style: italic; padding: 20px;
    background-color: #f7fcfd; border: 1px dashed #e0f7fa; border-radius: 5px;
}
.calcufacil-logarithm_antilogarithm_calculator .calculation-summary {
    width: 100%; text-align: center; margin-bottom: 25px;
}
.calcufacil-logarithm_antilogarithm_calculator .calculation-desc {
    font-size: 1.1em; color: #555; margin-bottom: 15px;
}
.calcufacil-logarithm_antilogarithm_calculator .main-result {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    background-color: #b2ebf2; /* Medium light cyan */ padding: 20px; border-radius: 8px;
    border: 1px solid #80deea; font-size: 1.2em; color: #006064; /* Darkest cyan */
}
.calcufacil-logarithm_antilogarithm_calculator .main-result span:first-child {
    font-weight: normal; font-size: 0.8em; color: #00bcd4;
}
.calcufacil-logarithm_antilogarithm_calculator .main-result span:last-child {
    font-size: 2.2em; font-weight: bold; margin-top: 5px;
}
.calcufacil-logarithm_antilogarithm_calculator .math-notation {
    font-style: italic; font-size: 0.9em; color: #777; margin-top: 10px;
}
.calcufacil-logarithm_antilogarithm_calculator .errors {
    color: #D32F2F; background-color: #FFCDD2; border: 1px solid #EF9A9A; padding: 10px 15px; border-radius: 4px; margin-top: 15px;
    text-align: center;
}
.calcufacil-logarithm_antilogarithm_calculator .errors ul { list-style: none; padding: 0; margin: 0; }
.calcufacil-logarithm_antilogarithm_calculator .errors li { margin-bottom: 5px; }
.calcufacil-logarithm_antilogarithm_calculator .errors li:last-child { margin-bottom: 0; }

.calcufacil-logarithm_antilogarithm_calculator .disclaimer-box {
    margin-top: 20px; padding: 15px; background-color: #e0f7fa; /* Pale blue-cyan */
    border: 1px solid #a7d9e0; border-left: 5px solid #4dd0e1; /* Accent blue-cyan */
    border-radius: 8px; font-size: 0.88em; color: #555;
}
.calcufacil-logarithm_antilogarithm_calculator .disclaimer-box h4 {
    margin-top: 0; margin-bottom: 10px; color: #4dd0e1; font-size: 1.05em;
}
.calcufacil-logarithm_antilogarithm_calculator .disclaimer-box ul {
    list-style: disc; margin-left: 20px; padding-left: 0; line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .calcufacil-logarithm_antilogarithm_calculator.calcufacil-container {
        flex-direction: column; gap: 20px; padding: 15px;
    }
    .calcufacil-logarithm_antilogarithm_calculator .calcufacil-left.calculator-form,
    .calcufacil-logarithm_antilogarithm_calculator .calcufacil-right.results {
        min-width: unset; width: 100%;
    }
}