/* EKHO Kalkulátor Stílusok */
#ekho-calculator-container {
    background-color: #f9f9f9;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    padding: 25px;
    max-width: 550px;
    margin: 20px auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

#ekho-calculator-container h3 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #2c3e50;
    text-align: center;
}

#ekho-calculator-container .ekho-description {
    font-size: 14px;
    color: #555;
    text-align: center;
    margin-bottom: 25px;
}

.ekho-form-group {
    margin-bottom: 20px;
}

.ekho-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.ekho-form-group input[type="number"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box; /* Fontos a padding miatt */
}

.ekho-form-group input[type="number"]:focus {
    outline: none;
    border-color: #0073aa; /* WordPress kék */
    box-shadow: 0 0 0 2px rgba(0, 115, 170, 0.2);
}

.ekho-form-group-checkbox {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.ekho-form-group-checkbox input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
}

.ekho-form-group-checkbox label {
    margin-bottom: 0;
    font-weight: normal;
}

.ekho-eredmenyek {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px dashed #ccc;
}

.ekho-eredmenyek h4 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #2c3e50;
}

.ekho-eredmeny-sor {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    font-size: 15px;
    border-bottom: 1px solid #eee;
}

.ekho-eredmeny-sor:last-child {
    border-bottom: none;
}

.ekho-eredmeny-sor span {
    color: #444;
}

.ekho-eredmeny-sor strong {
    font-size: 1.1em;
    color: #0073aa;
    font-weight: 700;
}

.ekho-eredmenyek hr {
    border: 0;
    border-top: 1px dashed #ccc;
    margin: 10px 0;
}

.kifizeto-resz span {
    color: #666;
}

.kifizeto-resz strong {
    color: #d9534f;
}

.ekho-jogi-nyilatkozat {
    margin-top: 25px;
    font-size: 12px;
    color: #777;
    background-color: #f0f0f0;
    padding: 10px;
    border-radius: 4px;
    text-align: center;
}