/* Sleep Cycle Calculator Styles - Wellness Theme */
.calcufacil-sleep_cycle_calculator.calcufacil-container {
    max-width: 900px; margin: 20px auto; background: #fff; padding: 20px;
    border-radius: 8px; box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: flex; flex-wrap: wrap; gap: 30px; font-family: Arial, sans-serif;
}
.calcufacil-sleep_cycle_calculator h3 {
    width: 100%; text-align: center; color: #4a4a8a; /* Dark Blue/Purple */
    margin-bottom: 20px; font-size: 24px;
}
.calcufacil-sleep_cycle_calculator .calcufacil-left,
.calcufacil-sleep_cycle_calculator .calcufacil-right {
    flex: 1; min-width: 300px;
}
/* Form */
.calcufacil-sleep_cycle_calculator .calculator-form h2 { font-size: 20px; color: #4a4a8a; margin-bottom: 15px; }
.calcufacil-sleep_cycle_calculator .input-group { margin-bottom: 18px; }
.calcufacil-sleep_cycle_calculator label { display: block; font-weight: bold; color: #333; margin-bottom: 5px; font-size: 14px; }
.calcufacil-sleep_cycle_calculator input[type="time"],
.calcufacil-sleep_cycle_calculator select {
    width: 100%; padding: 10px; border: 1px solid #ccc; border-radius: 4px;
    box-sizing: border-box; font-size: 16px; background: #f9f9f9; font-family: sans-serif;
}
.calcufacil-sleep_cycle_calculator .radio-group.inline label { display: inline-block; margin-right: 15px; font-weight: normal; font-size: 14px; cursor: pointer; }
.calcufacil-sleep_cycle_calculator .radio-group.inline input[type="radio"] { margin-right: 4px; vertical-align: middle; }
.calcufacil-sleep_cycle_calculator select { /* Select arrow */
    appearance: none; -webkit-appearance: none; -moz-appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%234a4a8a%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat; background-position: right 10px top 50%; background-size: 10px auto;
    padding-right: 30px;
}

.calcufacil-sleep_cycle_calculator button {
    background-color: #6a6aff; /* Medium Blue/Purple */ color: #fff; padding: 12px 20px; border: none; border-radius: 4px;
    cursor: pointer; font-size: 16px; width: 100%; transition: background-color 0.3s ease; margin-top: 10px;
}
.calcufacil-sleep_cycle_calculator button:hover { background-color: #4a4a8a; }
.calcufacil-sleep_cycle_calculator .calculator-form .note { font-size: 11px; color: #666; margin-top: 15px; text-align: center; font-style: italic; }
/* Results */
.calcufacil-sleep_cycle_calculator .results { background: #f0f0f8; padding: 25px; border-radius: 8px; border: 1px solid #dadae8; }
.calcufacil-sleep_cycle_calculator .results-header { text-align: center; margin-bottom: 20px; }
.calcufacil-sleep_cycle_calculator .results-header h2 { font-size: 20px; color: #4a4a8a; margin: 0; }
.calcufacil-sleep_cycle_calculator .results-breakdown.sleep-times { text-align: center; }
.calcufacil-sleep_cycle_calculator .result-context { font-size: 14px; color: #333; margin-bottom: 15px; }
.calcufacil-sleep_cycle_calculator .time-suggestions { list-style: none; padding: 0; margin: 0; }
.calcufacil-sleep_cycle_calculator .time-suggestions li {
    background-color: #fff; padding: 10px 15px; border-radius: 4px; margin-bottom: 8px;
    border: 1px solid #eee; box-shadow: 0 1px 2px rgba(0,0,0,0.05);
    display: flex; justify-content: center; align-items: baseline; gap: 10px;
}
.calcufacil-sleep_cycle_calculator .time-suggestions li strong { font-size: 1.5em; color: #4a4a8a; }
.calcufacil-sleep_cycle_calculator .time-suggestions li small { font-size: 0.9em; color: #666; }

.calcufacil-sleep_cycle_calculator .note { font-size: 12px; color: #555; text-align: center; margin-top: 20px; font-style: italic; line-height: 1.4; }
.calcufacil-sleep_cycle_calculator .errors { color: #721c24; background-color: #f8d7da; border: 1px solid #f5c6cb; padding: 10px 15px; border-radius: 4px; margin-top: 15px; }
.calcufacil-sleep_cycle_calculator .errors ul { list-style: none; padding: 0; margin: 0; }
.calcufacil-sleep_cycle_calculator .errors li { margin-bottom: 5px; }
.calcufacil-sleep_cycle_calculator .errors li:last-child { margin-bottom: 0; }