#homeoffice-calculator-container {
    background-color: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 30px;
    max-width: 550px;
    margin: 20px auto;
    font-family: system-ui, -apple-system, sans-serif;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

#homeoffice-calculator-container h3 {
    text-align: center;
    margin-top: 0;
    color: #1a202c;
    font-size: 22px;
}

.ho-mode-selector {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
}

.ho-mode-selector label {
    padding: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s ease-in-out;
}

.ho-mode-selector input[type="radio"]:checked + label {
    border-color: #3b82f6;
    background-color: #eff6ff;
    color: #1d4ed8;
    font-weight: 500;
}

#reszleges-honap-adatok {
    margin-bottom: 25px;
    transition: all 0.3s;
}
#reszleges-honap-adatok.hidden {
    display: none;
}
.ho-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.ho-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}
.ho-form-group input[type="number"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    box-sizing: border-box;
}

.ho-eredmeny-wrapper {
    background-color: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #166534;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.ho-eredmeny-wrapper span {
    display: block;
    font-size: 16px;
    margin-bottom: 5px;
}

.ho-eredmeny-wrapper strong {
    font-size: 32px;
    font-weight: 700;
}

.ho-jogi-nyilatkozat {
    margin-top: 20px;
    font-size: 12px;
    color: #6b7280;
    text-align: center;
    line-height: 1.5;
}