#katica-calculator {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    background: #ffffff;
    border: 2px solid #63b132;
    padding: 25px;
    border-radius: 15px;
    font-family: inherit;
    box-sizing: border-box;
}

.calc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

/* Mobilnézet javítása */
@media (max-width: 600px) {
    .calc-grid {
        grid-template-columns: 1fr;
    }
}

.input-group { margin-bottom: 15px; }
.input-group label { display: block; font-weight: bold; margin-bottom: 5px; color: #333; }
.input-group input, .input-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-sizing: border-box;
}

/* Csoportos figyelmeztetés doboza */
#group-warning {
    display: none;
    margin-top: 20px;
    padding: 20px;
    background: #fff1f0;
    border: 2px solid #ffa39e;
    border-radius: 10px;
    color: #cf1322;
    text-align: center;
    line-height: 1.5;
    font-weight: 500;
}

#group-warning a {
    color: #cf1322;
    font-weight: bold;
    text-decoration: underline;
}

#calc-result {
    margin-top: 25px;
    background: #f1f8eb;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

#total-price {
    font-size: 32px;
    font-weight: 800;
    color: #63b132;
    margin: 10px 0;
}

#calc-log { 
    font-size: 13px; 
    color: #333; 
    line-height: 1.6;
    text-align: left;
    margin-top: 15px;
}

#calc-log strong {
    display: block;
    margin-bottom: 5px;
    color: #63b132;
}