/* Tip Calculator Styles - Adapted */
.calcufacil-tip_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-tip_calculator h3 {
    width: 100%;
    text-align: center;
    color: #fd7e14; /* Orange - Money/Food theme */
    margin-bottom: 20px;
    font-size: 24px;
}

.calcufacil-tip_calculator .calcufacil-left,
.calcufacil-tip_calculator .calcufacil-right {
    flex: 1;
    min-width: 300px;
}

/* Form Styling */
.calcufacil-tip_calculator .calculator-form h2 {
    font-size: 20px;
    color: #fd7e14;
    margin-bottom: 15px;
}

.calcufacil-tip_calculator .input-group {
    margin-bottom: 20px;
}

.calcufacil-tip_calculator label {
    display: block;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
    font-size: 14px;
}

.calcufacil-tip_calculator input[type="number"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 16px;
    background: #f9f9f9;
}

.calcufacil-tip_calculator button {
    background-color: #ffc107; /* Amber/Yellow */
    color: #333; /* Dark text on yellow */
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-top: 10px;
    font-weight: bold;
}

.calcufacil-tip_calculator button:hover {
    background-color: #e0a800; /* Darker Amber */
    color: #000;
}

/* Results Styling */
.calcufacil-tip_calculator .results {
    background: #fffcf0; /* Light Yellow */
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #ffeeba; /* Lighter Amber border */
}

.calcufacil-tip_calculator .results-header {
    text-align: center;
    margin-bottom: 20px;
}
.calcufacil-tip_calculator .results-header h2 {
     font-size: 20px;
     color: #b98500; /* Dark Amber */
     margin: 0;
}

.calcufacil-tip_calculator .results-breakdown {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
}

.calcufacil-tip_calculator .breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: #fff;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
    border-left: 3px solid #ffc107; /* Amber */
}

.calcufacil-tip_calculator .breakdown-item span:last-child {
    font-weight: bold;
    color: #b98500; /* Dark Amber */
    text-align: right;
     font-size: 1.1em;
}

.calcufacil-tip_calculator .breakdown-item.total {
    background-color: #fff3cd; /* Lighter Amber */
    padding: 12px 15px;
    font-weight: bold;
    border-left-width: 0;
     border-top: 1px solid #ffeeba;
     margin-top: 5px;
}
.calcufacil-tip_calculator .breakdown-item.total span:first-child {
     font-size: 15px;
     color: #333;
}
.calcufacil-tip_calculator .breakdown-item.main-result span:last-child {
     font-size: 1.8em; /* Emphasize total */
     color: #856404; /* Darkest Amber */
}
.calcufacil-tip_calculator .breakdown-item.per-person {
    font-size: 13px;
    background-color: #fffcf5;
    border-left-color: #fd7e14; /* Orange */
}
.calcufacil-tip_calculator .breakdown-item.per-person span:last-child {
    font-size: 1em;
     color: #c55d09; /* Dark Orange */
}
.calcufacil-tip_calculator .breakdown-item.per-person.total {
    background-color: #ffe8cc; /* Lighter Orange */
    font-weight: bold;
    border-top: 1px solid #ffc899;
}
.calcufacil-tip_calculator .breakdown-item.per-person.total span:last-child {
    font-size: 1.3em;
    color: #9a4700; /* Darkest Orange */
}

.calcufacil-tip_calculator .note {
    font-size: 12px;
    color: #555;
    text-align: center;
    margin-top: 15px;
    font-style: italic;
    line-height: 1.4;
}

.calcufacil-tip_calculator .errors {
    color: #721c24; background-color: #f8d7da; border: 1px solid #f5c6cb;
    padding: 10px 15px; border-radius: 4px; margin-top: 15px;
}
.calcufacil-tip_calculator .errors ul { list-style: none; padding: 0; margin: 0; }
.calcufacil-tip_calculator .errors li { margin-bottom: 5px; }
.calcufacil-tip_calculator .errors li:last-child { margin-bottom: 0; }