/* Styles for Lottery Odds Calculator */
.calcufacil-lottery_odds.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-lottery_odds h2 {
    width: 100%; text-align: center; color: #FFD700; /* Gold accent for lottery */ text-shadow: 1px 1px 2px rgba(0,0,0,0.1); margin-bottom: 25px; font-size: 24px;
}
.calcufacil-lottery_odds .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-lottery_odds .calcufacil-right.results {
    flex: 1; min-width: 280px; background: #FFFDE7; /* Light Gold/Cream */ padding: 25px;
    border-radius: 8px; border: 1px solid #FFECB3; box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    display: flex; flex-direction: column; justify-content: center; align-items: center;
}
.calcufacil-lottery_odds .input-group { margin-bottom: 18px; }
.calcufacil-lottery_odds label { display: block; font-weight: bold; color: #333; margin-bottom: 8px; font-size: 14px; }
.calcufacil-lottery_odds input[type="text"],
.calcufacil-lottery_odds select {
    width: 100%; padding: 10px 12px; border: 1px solid #FFD54F; /* Medium Gold border */
    border-radius: 5px; box-sizing: border-box; font-size: 15px; background: #FFFBEF; /* Very light gold background */
    font-family: sans-serif;
}
.calcufacil-lottery_odds input[type="text"]:focus,
.calcufacil-lottery_odds select:focus {
    border-color: #FFD700;
    box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.2);
    outline: none;
}
.calcufacil-lottery_odds .note {
    font-size: 0.85em; color: #666; margin-top: 5px; line-height: 1.4;
}

.calcufacil-lottery_odds button {
    background-color: #FFD700; /* Gold */ color: #333; padding: 12px 25px;
    border: none; border-radius: 5px; cursor: pointer; font-size: 16px;
    width: 100%; transition: background-color 0.3s ease; font-weight: bold;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
.calcufacil-lottery_odds button:hover { background-color: #FFC107; /* Darker Gold */ }

/* Results Styling */
.calcufacil-lottery_odds .results-header h2 {
    color: #FFC107; /* Darker Gold */ margin-bottom: 20px; font-size: 20px;
}
.calcufacil-lottery_odds .initial-message {
    text-align: center; color: #777; font-style: italic; padding: 20px;
    background-color: #FFFDF5; border: 1px dashed #E0D0B0; border-radius: 5px;
}
.calcufacil-lottery_odds .calculation-summary {
    width: 100%; text-align: center; margin-bottom: 25px;
}
.calcufacil-lottery_odds .calculation-desc {
    font-size: 1.1em; color: #555; margin-bottom: 15px;
}
.calcufacil-lottery_odds .main-result {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    background-color: #FFECB3; /* Medium light Gold */ padding: 20px; border-radius: 8px;
    border: 1px solid #FFD700; font-size: 1.2em; color: #FF8F00; /* Darkest Gold */
}
.calcufacil-lottery_odds .main-result span:first-child {
    font-weight: normal; font-size: 0.8em; color: #FFD700;
}
.calcufacil-lottery_odds .main-result span:last-child {
    font-size: 2.2em; font-weight: bold; margin-top: 5px;
}
.calcufacil-lottery_odds .math-notation {
    font-style: italic; font-size: 0.9em; color: #777; margin-top: 10px;
}
.calcufacil-lottery_odds .errors {
    color: #D32F2F; background-color: #FFCDD2; border: 1px solid #EF9A9A; padding: 10px 15px; border-radius: 4px; margin-top: 15px;
    text-align: center;
}
.calcufacil-lottery_odds .errors ul { list-style: none; padding: 0; margin: 0; }
.calcufacil-lottery_odds .errors li { margin-bottom: 5px; }
.calcufacil-lottery_odds .errors li:last-child { margin-bottom: 0; }

.calcufacil-lottery_odds .disclaimer-box {
    margin-top: 20px; padding: 15px; background-color: #FFFBEF;
    border: 1px solid #FFECB3; border-left: 5px solid #FFC107; /* Darker gold accent */
    border-radius: 8px; font-size: 0.88em; color: #555;
}
.calcufacil-lottery_odds .disclaimer-box h4 {
    margin-top: 0; margin-bottom: 10px; color: #FFC107; font-size: 1.05em;
}
.calcufacil-lottery_odds .disclaimer-box ul {
    list-style: disc; margin-left: 20px; padding-left: 0; line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .calcufacil-lottery_odds.calcufacil-container {
        flex-direction: column; gap: 20px; padding: 15px;
    }
    .calcufacil-lottery_odds .calcufacil-left.calculator-form,
    .calcufacil-lottery_odds .calcufacil-right.results {
        min-width: unset; width: 100%;
    }
}