/* Styles for Match Day Cost Calculator */
.calcufacil-match_day_cost_calculator {
    background-color: #f4f9f4; /* Light green background */
    border: 1px solid #c8e6c9; /* Green border */
    border-radius: 8px;
    padding: 20px 25px;
    font-family: 'Roboto', sans-serif; /* Common modern font */
    max-width: 800px;
    margin: 25px auto;
    box-shadow: 0 3px 6px rgba(0,0,0,0.07);
}

/* Default H3 Title from constructor */
.calcufacil-match_day_cost_calculator > h3 {
   text-align: center;
   color: #2e7d32; /* Darker Green */
   margin-bottom: 15px;
   font-size: 1.3em;
   font-weight: 600;
}

/* Main H2 within the content */
.calcufacil-match_day_cost_calculator .calculator-content h2 {
    text-align: center;
    color: #1b5e20; /* Even Darker Green */
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.7em;
    font-weight: 700;
}

.calcufacil-match_day_cost_calculator .description {
    text-align: center;
    color: #424242; /* Dark Gray */
    font-size: 0.95em;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Form Styling */
.calcufacil-match_day_cost_calculator form {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px dashed #a5d6a7;
}

.calcufacil-match_day_cost_calculator form h3 {
 color: #388e3c; /* Medium Green */
 margin-bottom: 20px;
 font-size: 1.25em;
 border-bottom: 1px solid #e8f5e9;
 padding-bottom: 8px;
 display: flex;
 align-items: center;
 gap: 8px;
}
.calcufacil-match_day_cost_calculator form h3 i { /* Font Awesome */
  color: #66bb6a; /* Lighter green */
}


.calcufacil-match_day_cost_calculator .form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 18px 22px;
    margin-bottom: 25px;
}

.calcufacil-match_day_cost_calculator .input-group {
    display: flex;
    flex-direction: column;
    position: relative; /* For currency symbol */
}

.calcufacil-match_day_cost_calculator .input-group label {
    font-weight: 500;
    color: #333;
    margin-bottom: 6px;
    font-size: 0.9em;
}

.calcufacil-match_day_cost_calculator .input-group input[type="number"],
.calcufacil-match_day_cost_calculator .input-group input[type="text"],
.calcufacil-match_day_cost_calculator .input-group select {
    padding: 10px;
    border: 1px solid #a5d6a7; /* Light green border */
    border-radius: 4px;
    font-size: 1em;
    background-color: #fff;
    width: 100%;
    box-sizing: border-box;
}

.calcufacil-match_day_cost_calculator .input-group input[type="text"] {
 padding-left: 22px; /* Space for currency symbol */
}

.calcufacil-match_day_cost_calculator .input-group span.currency-symbol {
    position: absolute;
    left: 8px;
    top: 38px; /* Adjust as needed based on label/input height */
    color: #757575; /* Medium Gray */
    font-size: 1em;
    pointer-events: none; /* Prevent symbol blocking input click */
}


.calcufacil-match_day_cost_calculator .input-group small {
    font-size: 0.8em;
    color: #616161; /* Darker Gray */
    margin-top: 5px;
    line-height: 1.4;
}


.calcufacil-match_day_cost_calculator button[type="submit"] {
    background-color: #4caf50; /* Standard Green */
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1em;
    display: block;
    width: fit-content;
    margin: 20px auto 0 auto;
    transition: background-color 0.3s ease;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.calcufacil-match_day_cost_calculator button[type="submit"]:hover {
    background-color: #388e3c; /* Darker Green */
}

/* Results Area Styling */
.calcufacil-match_day_cost_calculator .results-area {
    margin-top: 25px;
    padding: 20px;
    background-color: #e8f5e9; /* Very Light Green */
    border-radius: 6px;
    border: 1px solid #c8e6c9;
}
.calcufacil-match_day_cost_calculator .results-area h3 {
    color: #2e7d32; /* Darker Green */
    margin-bottom: 15px;
    text-align: center;
    font-size: 1.4em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.calcufacil-match_day_cost_calculator .results-area h3 i {
    color: #66bb6a;
}


.calcufacil-match_day_cost_calculator .results-summary {
 text-align: center;
 font-size: 0.9em;
 color: #424242;
 margin-bottom: 25px;
 padding-bottom: 15px;
 border-bottom: 1px dashed #a5d6a7;
}
.calcufacil-match_day_cost_calculator .results-summary .value {
 color: #1b5e20;
 font-weight: 600;
}


.calcufacil-match_day_cost_calculator .results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.calcufacil-match_day_cost_calculator .result-box {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    border: 1px solid #e0e0e0; /* Light Gray */
    box-shadow: 0 2px 4px rgba(0,0,0,0.04);
}
.calcufacil-match_day_cost_calculator .result-box h4 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #388e3c;
    font-size: 1.15em;
    border-bottom: 1px solid #e8f5e9;
    padding-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.calcufacil-match_day_cost_calculator .result-box h4 i {
    color: #66bb6a;
    font-size: 1.1em;
}


.calcufacil-match_day_cost_calculator .result-box p {
    margin-bottom: 10px;
    font-size: 0.95em;
    color: #424242;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.calcufacil-match_day_cost_calculator .result-box p .value {
    font-weight: 600;
    color: #1b5e20;
    white-space: nowrap;
    margin-left: 10px;
}
.calcufacil-match_day_cost_calculator .result-box hr {
    border: none;
    border-top: 1px dashed #ccc;
    margin: 15px 0;
}
.calcufacil-match_day_cost_calculator .result-box p .subtotal-value {
     font-size: 1.05em;
}
.calcufacil-match_day_cost_calculator .total-cost-box {
    background-color: #e8f5e9; /* Highlight total box */
    border-color: #a5d6a7;
}

.calcufacil-match_day_cost_calculator .total-cost-box p .main-result {
    font-size: 1.8em;
    font-weight: bold;
    color: #1b5e20; /* Darkest Green */
    display: block; /* Ensure it takes full width */
    text-align: center;
    margin-top: 10px;
}
.calcufacil-match_day_cost_calculator .total-cost-box small {
    font-size: 0.85em;
    color: #424242;
    display: block;
    text-align: center;
    margin-top: 10px;
}

/* Disclaimer/Note */
.calcufacil-match_day_cost_calculator .disclaimer {
    font-size: 0.85em;
    color: #616161;
    text-align: center;
    margin-top: 15px;
    font-style: italic;
    line-height: 1.4;
}

.calcufacil-match_day_cost_calculator .initial-message {
    color: #424242;
    text-align: center;
    padding: 25px;
    background-color: #f1f8e9; /* Light green/yellow */
    border: 1px dashed #c5e1a5; /* Lime green */
    border-radius: 5px;
    margin-top: 20px;
}