/* Styles for Eisenhower Matrix Prioritizer */
.calcufacil-eisenhower_matrix.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 #e0e0e0;
}
.calcufacil-eisenhower_matrix h2 {
    width: 100%; text-align: center; color: #009688; /* Teal accent for productivity/clarity */ margin-bottom: 25px; font-size: 24px;
}
.calcufacil-eisenhower_matrix .intro-text {
    width: 100%; text-align: center; margin-bottom: 25px; color: #555; font-size: 0.95em;
}
.calcufacil-eisenhower_matrix .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-eisenhower_matrix .calcufacil-right.results {
    flex: 1; min-width: 280px; background: #E0F2F1; /* Light Teal */ padding: 25px;
    border-radius: 8px; border: 1px solid #B2DFDB; box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    display: flex; flex-direction: column; justify-content: center; align-items: center;
}
.calcufacil-eisenhower_matrix .input-group { margin-bottom: 18px; }
.calcufacil-eisenhower_matrix label { display: block; font-weight: bold; color: #333; margin-bottom: 8px; font-size: 14px; }
.calcufacil-eisenhower_matrix input[type="text"],
.calcufacil-eisenhower_matrix select {
    width: 100%; padding: 10px 12px; border: 1px solid #80CBC4; /* Medium Teal border */
    border-radius: 5px; box-sizing: border-box; font-size: 15px; background: #E0F2F1; /* Very light teal background */
    font-family: sans-serif;
}
.calcufacil-eisenhower_matrix input[type="text"]:focus,
.calcufacil-eisenhower_matrix select:focus {
    border-color: #009688;
    box-shadow: 0 0 0 2px rgba(0, 150, 136, 0.2);
    outline: none;
}
.calcufacil-eisenhower_matrix .note {
    font-size: 0.85em; color: #666; margin-top: 5px; line-height: 1.4;
}

.calcufacil-eisenhower_matrix button {
    background-color: #009688; /* Teal */ 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-eisenhower_matrix button:hover { background-color: #00796B; /* Darker Teal */ }

/* Results Styling */
.calcufacil-eisenhower_matrix .results-header h2 {
    color: #00796B; /* Darker Teal */ margin-bottom: 20px; font-size: 20px;
}
.calcufacil-eisenhower_matrix .initial-message {
    text-align: center; color: #777; font-style: italic; padding: 20px;
    background-color: #F8FDFD; border: 1px dashed #D0E0D0; border-radius: 5px;
}
.calcufacil-eisenhower_matrix .calculation-summary {
    width: 100%; text-align: center; margin-bottom: 25px;
}
.calcufacil-eisenhower_matrix .calculation-desc {
    font-size: 1.1em; color: #555; margin-bottom: 15px;
}
.calcufacil-eisenhower_matrix .main-result {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    background-color: #B2DFDB; /* Medium light Teal */ padding: 20px; border-radius: 8px;
    border: 1px solid #009688; font-size: 1.2em; color: #004D40; /* Darkest Teal */
}
.calcufacil-eisenhower_matrix .main-result.final-result {
    background-color: #4DB6AC; /* More prominent teal */
    border-color: #009688;
    color: #FFFFFF;
    padding: 25px;
    font-size: 1.4em;
    margin-top: 20px;
}
.calcufacil-eisenhower_matrix .main-result span:first-child {
    font-weight: normal; font-size: 0.8em; color: inherit;
}
.calcufacil-eisenhower_matrix .main-result span:last-child {
    font-size: 2.2em; font-weight: bold; margin-top: 5px; color: inherit;
}
.calcufacil-eisenhower_matrix .main-result.final-result span:first-child {
    font-size: 0.7em;
}
.calcufacil-eisenhower_matrix .main-result.final-result span:last-child {
    font-size: 2.5em;
}
.calcufacil-eisenhower_matrix .action-advice {
    background-color: #CCF1EF;
    border-left: 5px solid #009688;
    padding: 15px;
    margin-top: 20px;
    border-radius: 8px;
    font-size: 1.05em;
    color: #333;
    text-align: center;
}
.calcufacil-eisenhower_matrix .math-notation {
    font-style: italic; font-size: 0.9em; color: #777; margin-top: 10px;
}
.calcufacil-eisenhower_matrix .errors {
    color: #D32F2F; background-color: #FFCDD2; border: 1px solid #EF9A9A; padding: 10px 15px; border-radius: 4px; margin-top: 15px;
    text-align: center;
}
.calcufacil-eisenhower_matrix .errors ul { list-style: none; padding: 0; margin: 0; }
.calcufacil-eisenhower_matrix .errors li { margin-bottom: 5px; }
.calcufacil-eisenhower_matrix .errors li:last-child { margin-bottom: 0; }

.calcufacil-eisenhower_matrix .disclaimer-box {
    margin-top: 20px; padding: 15px; background-color: #E0F2F1;
    border: 1px solid #B2DFDB; border-left: 5px solid #00796B; /* Darker teal accent */
    border-radius: 8px; font-size: 0.88em; color: #555;
}
.calcufacil-eisenhower_matrix .disclaimer-box h4 {
    margin-top: 0; margin-bottom: 10px; color: #00796B; font-size: 1.05em;
}
.calcufacil-eisenhower_matrix .disclaimer-box ul {
    list-style: disc; margin-left: 20px; padding-left: 0; line-height: 1.6;
}
.calcufacil-eisenhower_matrix .disclaimer-box img {
    max-width: 100%;
    height: auto;
    margin: 15px auto;
    display: block;
    border: 1px solid #009688;
    border-radius: 5px;
    padding: 5px;
}

/* Responsive */
@media (max-width: 768px) {
    .calcufacil-eisenhower_matrix.calcufacil-container {
        flex-direction: column; gap: 20px; padding: 15px;
    }
    .calcufacil-eisenhower_matrix .calcufacil-left.calculator-form,
    .calcufacil-eisenhower_matrix .calcufacil-right.results {
        min-width: unset; width: 100%;
    }
}