body {
    background-color: #f7f9fc;
    font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    color: #495057;
    min-height: 100vh;
}

/* AppStack kártya stílus */
.card {
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    margin-bottom: 1rem;
    background-color: #ffffff;
}

.brand-logo {
    max-height: 65px;
    width: auto;
}

.question-title {
    font-weight: 600;
    font-size: 1.05rem;
    color: #212529;
}

/* Státuszjelző (Progress Bar) */
.progress {
    height: 8px;
    border-radius: 4px;
    background-color: #e9ecef;
}

.progress-bar {
    background-color: #009fe3;
    transition: width 0.3s ease-in-out;
}

/* Függőleges opciós gombok stílusa */
.vertical-rating-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rating-option-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.65rem 1rem;
    border: 1px solid #ced4da;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    background-color: #fff;
    font-weight: 500;
    font-size: 0.95rem;
}

.rating-option-btn:hover {
    border-color: #009fe3;
    background-color: #f8fafd;
}

/* Csillagok stílusa */
.star-rating-icons {
    font-size: 0.8rem;
    line-height: 1;
}

.star-rating-icons i {
    color: #ffc107 !important;
    text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.15);
}

/* Gombok egyedi színei kijelöléskor */
.btn-check[id$="_1"]:checked + .rating-option-btn {
    background-color: #dc3545 !important;
    border-color: #dc3545 !important;
    color: #fff !important;
}

.btn-check[id$="_2"]:checked + .rating-option-btn {
    background-color: #ffc107 !important;
    border-color: #ffc107 !important;
    color: #212529 !important;
}

.btn-check[id$="_3"]:checked + .rating-option-btn {
    background-color: #fd7e14 !important;
    border-color: #fd7e14 !important;
    color: #fff !important;
}

.btn-check[id$="_4"]:checked + .rating-option-btn {
    background-color: #20c997 !important;
    border-color: #20c997 !important;
    color: #fff !important;
}

.btn-check[id$="_5"]:checked + .rating-option-btn {
    background-color: #198754 !important;
    border-color: #198754 !important;
    color: #fff !important;
}

.btn-tyre3m {
    background-color: #009fe3;
    border-color: #009fe3;
    color: #ffffff;
    font-weight: 600;
}

.btn-tyre3m:hover {
    background-color: #0081b8;
    color: #ffffff;
}

/* Lépések elrejtése alapból */
.wizard-step {
    display: none;
}

.wizard-step.active {
    display: block;
}