.hpf-wizard-wrapper {
    background-color: #E7F4F1;
    color: #076951;
    border: 1px solid #076951;
    border-radius: 10px;
    padding: 30px;
    max-width: 600px;
    margin: 20px auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.hpf-wizard-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.hpf-wizard-header h2 {
    color: #076951;
    margin: 0;
    font-size: 1.5rem;
}

.hpf-icon {
    font-size: 2rem;
    margin-right: 10px;
}

.hpf-breadcrumb {
    font-size: 0.85rem;
    color: #076951;
    opacity: 0.7;
    text-align: center;
    margin-bottom: 25px;
}

.hpf-breadcrumb span.active {
    font-weight: bold;
    opacity: 1;
    text-decoration: underline;
}

.hpf-step {
    animation: fadeIn 0.4s ease-in-out;
    text-align: center;
}

.hpf-step label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 1.1rem;
}

.hpf-btn-next {
    background-color: #076951;
    color: #fff;
    border: none;
    padding: 10px 25px;
    font-size: 1rem;
    border-radius: 25px;
    cursor: pointer;
    margin-top: 20px;
    transition: opacity 0.2s;
    width: 100%;
}

.hpf-btn-next:disabled {
    background-color: #a0c4bb;
    cursor: not-allowed;
}

.hpf-btn-next:not(:disabled):hover {
    opacity: 0.9;
}

.hpf-btn-back {
    background: none;
    border: none;
    color: #076951;
    cursor: pointer;
    text-decoration: underline;
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: block;
}

.hpf-loader {
    margin-top: 10px;
    font-size: 0.9rem;
    font-style: italic;
    opacity: 0.8;
}

/* Select2 overrides for this specific color scheme */
.select2-container--default .select2-selection--single {
    background-color: #fff !important;
    border: 1px solid #076951 !important;
    border-radius: 25px !important;
    height: 45px !important;
    padding: 8px 15px !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #076951 !important;
    line-height: 27px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 43px !important;
    right: 15px !important;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #076951 !important;
    color: #fff !important;
}

.hpf-result-box {
    background-color: #fff;
    border: 1px solid #076951;
    border-radius: 10px;
    padding: 20px;
    margin-top: 15px;
}

.hpf-exam-name {
    font-size: 1.3rem;
    font-weight: bold;
    color: #076951;
    margin: 15px 0;
}

.hpf-guide-btn {
    display: inline-block;
    background-color: #076951;
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    margin-top: 15px;
}

.hpf-guide-btn:hover {
    color: #fff;
    opacity: 0.9;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}
