.step-wrapper {
    font-family: 'Segoe UI', sans-serif;
}

.app-header {
    background: linear-gradient(180deg, #fff4ec, #fde7d3);
    padding: 16px;
}

.header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.city {
    font-size: 15px;
    font-weight: 600;
    color: #222;
}

.area {
    font-size: 12px;
    color: #6b7280;
    margin-top: 2px;
}

.header-actions {
    display: flex;
    gap: 10px;
}

.icon-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    position: relative;
}

/* Active menu */
.icon-btn.active {
    background: #f3932d;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

.icon-btn.active i,
.icon-btn.active svg {
    color: #fff;
    fill: #fff;
}

.notify .dot {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 6px;
    height: 6px;
    background: red;
    border-radius: 50%;
}

.search-wrapper {
    margin-top: 12px;
}

.search-wrapper input {
    width: 100%;
    padding: 12px 14px;
    border-radius: 14px;
    border: none;
    outline: none;
    background: #ffffff;
    font-size: 13px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.jobs-tabs {
    display: flex;
    background: #fdf4ec;
    padding: 4px;
}

.jobs-tabs .tab {
    width: 50%;
    text-align: center;
    padding: 10px 0;
    font-size: 13px;
    font-weight: 500;
    color: #9c6b3d;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.jobs-tabs .tab.active {
    color: #fff;
    font-weight: 600;
    background: linear-gradient(135deg, #e58b47, #d97706);
    box-shadow:
        0 4px 12px rgba(229, 139, 71, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: scale(1.02);
}

.jobs-tabs .tab:not(.active):hover {
    color: #d97706;
    background: rgba(229, 139, 71, 0.08);
}

.tab-badge {
    font-size: 9px;
    background: #ffe7a3;
    color: #8a6d00;
    padding: 2px 6px;
    border-radius: 10px;
    margin-left: 6px;
    vertical-align: middle;
}

.filter-bar {
    display: flex;
    gap: 10px;
    padding: 10px 16px;
    overflow-x: auto;
    border-bottom: 1px solid #fde7d3;
}

.filter-chip {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    color: #6b7280;
    padding: 7px 14px;
    background: #ffffff;
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-chip i {
    font-size: 11px;
    color: #9ca3af;
}

.filter-chip:hover {
    border-color: #e58b47;
    color: #e58b47;
    background: #fff7f1;
}

.filter-chip.active {
    background: #e58b47;
    color: #fff;
    border-color: #e58b47;
}

.filter-chip.active i {
    color: #fff;
}

.filter-bar::-webkit-scrollbar {
    display: none;
}

.job-card-section {
    background: linear-gradient(180deg, #fffdfb, #fde7d3);
    padding: 10px 0 20px;
    max-height: 500px;
    min-height: 500px;
    overflow-y: auto;
    overflow-x: hidden;
    scroll-behavior: smooth;
    padding: 10px 0 80px;
}

.job-card-section::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.job-card {
    display: flex;
    gap: 12px;
    padding: 14px;
    margin: 12px 16px;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(229, 139, 71, 0.12);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.25s ease;
}

.job-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    bottom: 5px;
    width: 4px;
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
    background: linear-gradient(180deg, #e58b47, #d97706);
}

.job-card:hover {
    transform: translateY(-3px);
    box-shadow:
        0 10px 22px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(229, 139, 71, 0.08);
}

.job-icon {
    width: 42px;
    height: 42px;
    background: #f3f4f6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #6b7280;
}

.job-info {
    flex: 1;
}

.job-top {
    display: flex;
    justify-content: space-between;
    align-items: start;
}

.job-title {
    font-size: 14px;
    font-weight: 600;
    color: #d97706;
}

.company-name {
    font-size: 11px;
    color: #8b8fa3;
    margin-top: 2px;
}

.arrow {
    font-size: 12px;
    color: #b0b3c7;
}

.job-salary {
    font-size: 12px;
    font-weight: 500;
    color: #111827;
    margin-top: 6px;

    display: flex;
    align-items: center;
    gap: 6px;
}

.job-salary i {
    color: #10b981;
    font-size: 12px;
}

.job-location {
    font-size: 11px;
    color: #6b7280;
    margin-top: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.job-location i {
    color: #f59e0b;
    font-size: 11px;
}

.job-tags {
    margin-top: 8px;
    display: flex;
    gap: 6px;
}

.job-tags span {
    font-size: 10px;
    padding: 4px 8px;
    border-radius: 8px;
    background: #f3f4f6;
    color: #555;
}

.job-like {
    position: absolute;
    right: 12px;
    bottom: 12px;
}

.job-like i {
    font-size: 14px;
    color: #c0c3d1;
    cursor: pointer;
}

.job-like i:hover {
    color: #e58b47;
}

.result-count {
    font-size: 14px;
    font-weight: 500;
    color: #7c7f92;
    padding: 10px 16px;
    background: #ffffff;
}

.result-count {
    position: sticky;
    top: 0;
    z-index: 5;
}

/* Main container */
.select2-container--default .select2-selection--single {
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    height: auto;
    padding: 0;
    display: flex;
    align-items: center;
}

/* Text */
.select2-container--default .select2-selection--single .select2-selection__rendered {
    padding: 0 !important;
    margin: 0 !important;
    color: #333;
    font-size: 16px;
    line-height: normal;
}

/* Placeholder */
.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #9ca3af;
}

/* Remove arrow */
.select2-container--default .select2-selection--single .select2-selection__arrow {
    display: none;
}

/* Remove focus border */
.select2-container--default.select2-container--focus .select2-selection--single {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

/* Dropdown clean */
.select2-dropdown {
    border-radius: 6px;
    border: 1px solid #eee;
}

/* Auto width based on content */
.select2-container--open .select2-dropdown {
    width: auto !important;
    min-width: 180px;
    /* fallback */
    white-space: nowrap;
}