.kz-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 25px;
    color: #535353;
    background: #f0f2f4;
    border-radius: 30px;
    font-family: "Manrope", sans-serif;
    font-size: 13px;
    line-height: 1.7;
    //box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.kz-wrapper h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #333;
}

.kz-row-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.kz-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.kz-select,
.kz-input,
kz-remove {
    flex: 1 1 25%;
    padding: 0.5rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    min-width: 120px;
    height: 40px;
    background-color: #ffffff !important; /* nútené biele pozadie */
}

.kz-wrapper .kz-input[type="text"] {
    padding: 0.5rem;
    min-width: 120px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    height: auto;
    max-width: 140px;
}

.kz-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
    justify-content: center;
}

.kz-button {
    padding: 0.7rem 1.5rem;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s ease;
}

.kz-button.plus {
    background: #e4e7eb;
    color: #535353;
    padding: 10px 20px;
    font-size: 16px;
    font-family: "Manrope", sans-serif;
    font-weight: bold;
    border: none;
    border-radius: 30px;
    cursor: pointer;
}

.kz-button.primary {
    background: #0ab23e;
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    font-family: "Manrope", sans-serif;
    font-weight: bold;
    border: none;
    border-radius: 30px;
    cursor: pointer;
}

//.kz-button:hover {
//    filter: brightness(1.05);
//}

.kz-results {
    margin-top: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
}

.kz-results p {
    margin-bottom: 0.8rem;
}

.kz-message {
    margin-top: 1.5rem;
    padding: 1rem;
    background-color: #ffffff;
    border-left: 5px solid #0ab23e;
    border-radius: 15px;
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    font-weight: 500;
}

.kz-remove {
    background: transparent;
    border: none;
    color: #aaa;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    padding: 0 0.5rem;
    margin-left: auto;
    align-self: center;
    transition: color 0.2s ease;
}

.kz-remove:hover {
    color: #e53935;
}