/**
 * Costify Pro – Complete Layout Stylesheet
 */
.costify-calculator-wrapper {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 25px;
    max-width: 600px;
    margin: 20px auto;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    font-family: inherit;
}

/* TÖBBLÉPÉSES MOTOR ALAPJA: Elrejtjük a paneleket, ha Pro módban vagyunk */
.costify-pro-multi-step .costify-step-panel {
    display: none;
}

/* Csak az aktív panel látható */
.costify-pro-multi-step .costify-step-panel.active {
    display: block;
    animation: costifyFadeIn 0.3s ease-in-out;
}

.costify-field-group {
    margin-bottom: 20px;
}

.costify-label {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    cursor: pointer;
    color: #4a5568;
}

.costify-label input {
    margin-right: 10px;
    width: 18px;
    height: 18px;
}

.costify-form-control {
    display: block;
    width: 100%;
    padding: 10px;
    margin-bottom: 12px;
    border: 1px solid #cbd5e0;
    border-radius: 5px;
}

/* Navigációs gombok elrendezése */
.costify-step-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.costify-next-btn, .costify-prev-btn, .costify-btn-submit {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
}

.costify-next-btn {
    background: #3182ce;
    color: white;
    margin-left: auto; /* Jobbra tolja a gombot, ha egyedül van */
}

.costify-prev-btn {
    background: #e2e8f0;
    color: #4a5568;
}

.costify-btn-submit {
    background: #4abc50;
    color: white;
    width: 100%;
}

/* Élő Számláló doboz */
.costify-summary-box {
    background: #f7fafc;
    border: 1px dashed #cbd5e0;
    padding: 15px;
    text-align: center;
    margin-top: 20px;
    border-radius: 6px;
}

.costify-total-price-display {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2b6cb0;
}

.costify-currency {
    font-size: 1.2rem;
    font-weight: bold;
    color: #2b6cb0;
}

/* Pénznem választó felső sor */
.costify-currency-switcher-container button {
    padding: 5px 12px;
    border: 1px solid #cbd5e0;
    background: white;
    cursor: pointer;
    font-weight: bold;
}

.costify-currency-switcher-container button.active {
    background: #3182ce;
    color: white;
    border-color: #3182ce;
}

@keyframes costifyFadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}