/* ============================================
   JOB LIKE THAT - Custom Theme
   Aligned with JLT production design system
   ============================================ */

:root {
    --orange: #FC8500;
    --orange-hover: #e07600;
    --orange-light: #FFF5E6;
    --dark-blue: #023046;
    --dark-blue-light: #0a4060;
    --main-blue: #259EBC;
    --main-blue-light: #8FC9E6;
    --gray-bg: #f0f0f1;
    --border-color: #dedede;
    --dark-gray: #999;
    --success-green: #2ECC71;
    --hover-transition: 300ms cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* ---- Global ---- */
body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Noto Sans", sans-serif;
    background-color: #fff;
    color: var(--dark-blue);
    font-weight: 300;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.text-orange { color: var(--orange) !important; }
.text-primary-dark { color: var(--dark-blue) !important; }
.bg-orange { background-color: var(--orange) !important; }

/* Calligraphic accent (landing intro line) */
.script-font {
    font-family: 'Dancing Script', cursive;
    font-size: 1.7rem;
    font-weight: 600;
}

/* Registration page: keep the header search hidden even after scroll
   (main.js reveals .pxp-search-container past 550px via .d-xxl-block).
   Higher specificity than .d-xxl-block so it always wins. */
header .pxp-search-container { display: none !important; }

/* ---- JLT Header ---- */
.jlt-header {
    background-color: var(--orange);
    border-bottom: 1px solid #ddd;
    z-index: 1030;
}
.jlt-header-container {
    display: flex;
    align-items: center;
    height: 80px;
    justify-content: space-between;
}
.jlt-logo img {
    display: block;
}
.jlt-nav-trigger {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.4);
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    padding: 6px 14px;
    transition: var(--hover-transition);
    transition-property: background-color, border-color;
}
.jlt-nav-trigger:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.7);
    color: #fff;
}
.jlt-nav-trigger .fa {
    font-size: 16px;
}
.jlt-nav-btn {
    background-color: var(--dark-blue);
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 18px;
    transition: var(--hover-transition);
    transition-property: background-color;
}
.jlt-nav-btn:hover {
    background-color: #fff;
    color: var(--dark-blue);
}
.jlt-nav-btn-outline {
    background: transparent;
    border: 1px solid var(--dark-blue);
    color: var(--dark-blue);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 18px;
}
.jlt-nav-btn-outline:hover {
    background-color: var(--dark-blue);
    color: #fff;
}

.step-indicator {
    font-size: 0.8rem;
    color: var(--dark-gray);
    font-weight: 500;
    white-space: nowrap;
}
.wizard-progress {
    margin: 0;
    padding: 0;
}
/* Once JS moves the progress into the active card, render it as the card's
   top edge: full-bleed track with an orange fill that grows per step. */
.wizard-card > .wizard-progress {
    margin: -2rem -2.5rem 1.5rem;
}
.wizard-card > .wizard-progress .progress {
    height: 6px;
    border-radius: 16px 16px 0 0;
    background-color: var(--gray-bg);
    overflow: hidden;
}
.wizard-card > .wizard-progress .progress-bar {
    background-color: var(--orange);
    border-radius: 0;
    transition: width 0.45s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.wizard-card > .wizard-progress .text-center {
    margin-top: 1.25rem;
}

/* ---- Buttons ---- */
.btn-orange {
    background-color: var(--dark-blue);
    border-color: var(--dark-blue);
    color: #fff;
    font-weight: 500;
    border-radius: 30px;
    padding: 0.7rem 1.8rem;
    font-size: 15px;
    transition: var(--hover-transition);
    transition-property: background-color, border-color, box-shadow;
}
.btn-orange:hover, .btn-orange:focus {
    background-color: var(--orange);
    border-color: var(--orange);
    color: #fff;
    transform: none;
    box-shadow: none;
}
.btn-orange:disabled, .btn-orange.disabled {
    background-color: var(--border-color);
    border-color: var(--border-color);
    color: #fff;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
    opacity: 0.65;
}

.btn-outline-orange {
    color: var(--orange);
    border-color: var(--orange);
    border-radius: 30px;
    font-weight: 500;
}
.btn-outline-orange:hover {
    background-color: transparent;
    border-color: var(--dark-blue);
    color: var(--orange);
}
/* "Keinen Lebenslauf…" hint: muted by default, darkens on button hover */
.cv-hint {
    color: #6c757d;
}
.btn-outline-orange:hover .cv-hint {
    color: #212529;
}

.btn-outline-secondary {
    border-radius: 30px;
    font-weight: 500;
    transition: var(--hover-transition);
    transition-property: color, border-color;
}

.btn-social {
    border: 1px solid var(--border-color);
    border-radius: 30px;
    padding: 0.6rem 1.2rem;
    font-weight: 500;
    background: #fff;
    text-align: left;
    display: flex;
    align-items: center;
    transition: var(--hover-transition);
    transition-property: background-color, border-color;
}
.btn-social:hover {
    background-color: #f8f9fa;
    border-color: var(--dark-gray);
}

/* ---- Wizard Card ---- */
.wizard-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem 2.5rem;
    box-shadow: 0px 15px 30px rgba(0,0,0,0.08);
    border: 0 none;
}

/* ---- Step Badge & Heading ---- */
.step-heading {
    margin-top: 0;
}
.step-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 50%;
    background-color: var(--orange);
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
}

/* ---- Form Controls ---- */
.form-control, .form-select {
    border-radius: 30px;
    border-color: var(--border-color);
    padding: 0.65rem 1.3rem;
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--dark-blue);
}
.form-control:focus, .form-select:focus {
    border-color: var(--dark-gray);
    box-shadow: none;
    color: var(--dark-blue);
}
.form-label {
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 0.35rem;
}

.form-check-input:checked {
    background-color: var(--orange);
    border-color: var(--orange);
}
.form-switch .form-check-input:checked {
    background-color: var(--orange);
    border-color: var(--orange);
}
.form-switch .form-check-input {
    height: 1.3em;
    width: 2.5em;
}
/* Profile picture (Step 1) — circular upload + crop modal */
.wizard-avatar {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: var(--gray-bg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    border: 3px solid var(--orange-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.wizard-avatar-placeholder {
    font-size: 3.6rem;
    color: #b8bcc2;
}
.wizard-avatar-cam {
    position: absolute;
    right: 0;
    bottom: 2px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--orange);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    border: 2px solid #fff;
}
.avatar-crop-container {
    max-height: 60vh;
}
.avatar-crop-container img {
    display: block;
    max-width: 100%;
}

/* Accept-terms checkbox framed like the inputs (border + radius) */
.accept-terms-box {
    border: 1px solid var(--border-color);
    border-radius: 30px;
    padding: 0.7rem 1.3rem;
}
/* Center the checkbox vertically next to the (multi-line) label */
.accept-terms-box .form-check {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding-left: 0;
}
.accept-terms-box .form-check-input {
    float: none;
    margin: 0;
    flex-shrink: 0;
}
.accept-terms-box .form-check-label {
    margin: 0;
    margin-left: 0.5rem;
}
.accept-terms-box a {
    color: var(--orange);
}

/* ---- Headings ---- */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: var(--dark-blue);
    letter-spacing: -0.5px;
}

/* ---- Wizard Steps ---- */
.wizard-step {
    display: none;
    animation: fadeIn 0.35s ease-in-out;
}
.wizard-step.active {
    display: block;
}
/* Keep the content area behind the wizard cards a consistent height (footer stays put on short steps) */
.wizard-step:not([data-step="landing"]) {
    min-height: 715px;
}

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

/* ---- Wizard Nav ---- */
.wizard-nav {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    /* Extra top spacing gives the buttons a "form footer" feel without a divider line */
    margin-top: 1.75rem;
    padding-top: 1.5rem;
}

/* ---- Feature Icons (Landing) ---- */
.feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--orange-light);
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.min-vh-75 {
    min-height: 75vh;
}

/* Landing split hero — fills the viewport below the fixed header (90px spacer) */
.landing-hero {
    min-height: calc(100vh - 90px);
}

/* ---- Divider ---- */
.divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: #999;
    font-size: 0.9rem;
}
.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid var(--border-color);
}
.divider span {
    padding: 0 1rem;
}

/* ---- Tags / Chips ---- */
.tag-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.btn-tag {
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 0.4rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    background: #fff;
    color: var(--dark-blue);
    transition: var(--hover-transition);
    transition-property: border-color, background-color, color;
}
.btn-tag:hover {
    border-color: var(--main-blue);
    color: var(--main-blue);
}
.btn-tag.active {
    border-color: var(--orange);
    background-color: var(--orange);
    color: #fff;
}

/* "Not applicable" shows the same faded look as a disabled option until it is selected */
.dynamic-tag.na-tag:not(.active) {
    opacity: 0.45;
}
/* ...but when it's enabled, hovering brings it to full opacity */
.dynamic-tag.na-tag:not(.active):not(:disabled):hover {
    opacity: 1;
}
/* Any option disabled within the section (NA selected, or NA while a real option is chosen) */
.dynamic-tag:disabled,
.btn-tag.multi-tag:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

/* ---- Step 8: Wo möchten Sie arbeiten? ---- */
/* Flags inside the country tags */
#workCountryTags .btn-tag .fi {
    border-radius: 2px;
}
/* "Alle Regionen" — a neutral "select all" action (check icon in front). Not orange by default
   so it doesn't read as already-selected; it only turns orange once it is actually active. */
.work-all-regions {
    border-color: var(--border-color);
    color: var(--dark-blue);
    font-weight: 600;
}
.work-all-regions:hover {
    border-color: var(--orange);
    color: var(--orange);
    background-color: var(--orange-light);
}
.work-all-regions.active {
    border-color: var(--orange);
    background-color: var(--orange);
    color: #fff;
}
/* Map container */
.work-map {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}
/* Google Maps fix: the site's "img { max-width: 100% }" otherwise breaks map tiles & zoom controls */
.work-map img {
    max-width: none !important;
}
/* Small separator between the per-country control blocks (right column) */
.work-radius-row:not(:last-child) {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
}

/* Per-country place autocomplete dropdown */
.work-place-suggestions {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    max-height: 220px;
    overflow-y: auto;
    margin-top: 2px;
}
.work-place-item {
    padding: 0.5rem 0.9rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--dark-blue);
}
.work-place-item:hover {
    background: var(--orange-light);
}
/* Radius slider in the brand colour (override Bootstrap's blue thumb) */
.work-radius {
    accent-color: var(--orange);
}
.work-radius::-webkit-slider-thumb {
    background-color: var(--orange);
}
.work-radius::-moz-range-thumb {
    background-color: var(--orange);
    border-color: var(--orange);
}
.work-radius::-ms-thumb {
    background-color: var(--orange);
}

.btn-tag-lg {
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
    background: #fff;
    color: var(--dark-blue);
    text-align: left;
    transition: var(--hover-transition);
    transition-property: border-color, background-color, color;
    line-height: 1.3;
}
.btn-tag-lg:hover {
    border-color: var(--main-blue);
    color: var(--main-blue);
}
.btn-tag-lg.active {
    border-color: var(--orange);
    background-color: var(--orange-light);
    color: var(--dark-blue);
}
.btn-tag-lg.active strong {
    color: var(--orange);
}

/* ---- Skill Badges ---- */
.skills-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    min-height: 48px;
    background: #fff;
}
.skill-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: var(--dark-blue);
    color: #fff;
    border-radius: 16px;
    padding: 0.3rem 0.75rem;
    font-size: 0.85rem;
    font-weight: 500;
}
.btn-close-sm {
    background: none;
    border: none;
    color: #fff;
    font-size: 1rem;
    line-height: 1;
    padding: 0;
    margin-left: 0.2rem;
    cursor: pointer;
    opacity: 0.7;
}
.btn-close-sm:hover {
    opacity: 1;
}

/* ---- Selection Cards (Education) ---- */
.selection-card {
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 1.2rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: var(--hover-transition);
    transition-property: border-color, background-color;
    background: #fff;
    height: 100%;
}
.selection-card:hover {
    border-color: var(--main-blue);
}
.selection-card.active {
    border-color: var(--orange);
    background-color: var(--orange-light);
}
.selection-card.active .selection-icon {
    background: var(--orange);
    color: #fff;
}
.selection-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--orange-light);
    color: var(--orange);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

/* ---- Upload Zone ---- */
.upload-zone {
    border: 2px dashed var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    background: #fafbfc;
}
.upload-zone:hover, .upload-zone.dragover {
    border-color: var(--main-blue);
    background-color: #f0f9fc;
}
.upload-zone.has-file {
    border-color: var(--success-green);
    border-style: solid;
    background-color: #f0fdf4;
}
/* CV-created message reuses the gray upload-zone box, but it's a plain (non-interactive) div */
.upload-zone.cv-created-zone {
    cursor: default;
}
.upload-zone.cv-created-zone:hover {
    border-color: var(--border-color);
    background-color: #fafbfc;
}

/* ---- Uploadovani dokumenti: chip (ikonica) u donjem desnom uglu zone ---- */
.upload-zone-rel { position: relative; min-height: 140px; }
.doc-chips {
    position: absolute;
    right: 10px;            /* 10px od ivica area-e */
    bottom: 10px;
    display: flex;
    flex-direction: row-reverse;   /* prvi chip uz desnu ivicu, naredni ulijevo */
    flex-wrap: wrap-reverse;       /* višak chip-ova ide prema gore */
    gap: 8px;
    max-width: calc(100% - 20px);
    pointer-events: none;          /* prazan prostor i dalje otvara dialog */
}
.doc-chip {
    pointer-events: auto;
    position: relative;
    width: 75px;
    height: 100px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid #e6e6e6;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 6px 4px;
    cursor: pointer;
}
.doc-chip-ico { font-size: 2.2rem; line-height: 1; }
.doc-chip-name {
    font-size: .58rem;
    color: #888;
    margin-top: 2px;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
}
.doc-chip-x {
    position: absolute;
    top: -7px;
    right: -7px;
    width: 20px;
    height: 20px;
    line-height: 18px;
    text-align: center;
    border: none;
    border-radius: 50%;
    background: #db4444;
    color: #fff;
    font-size: 14px;
    padding: 0;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .25);
    z-index: 2;
}
.doc-chip-x:hover { background: #b73333; }

/* ---- Save Link ---- */
.save-link {
    color: #999;
    text-decoration: none;
    font-size: 0.85rem;
}
.save-link:hover {
    color: var(--main-blue);
}

/* ---- Info Box (Step 9) ---- */
/* ---- Completion ---- */
.completion-illustration {
    animation: float 3s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ---- JLT Footer ---- */
.jlt-footer {
    font-size: 14px;
}
.jlt-footer-top {
    background-color: #e9f8ff;
    padding: 40px 0 20px;
}
.jlt-footer-top h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
}
.jlt-footer-section a {
    color: var(--dark-blue);
    text-decoration: none;
    transition: var(--hover-transition);
    transition-property: color;
}
.jlt-footer-section a:hover {
    color: var(--main-blue);
}
.jlt-footer-text {
    color: var(--dark-blue);
    line-height: 1.8;
}
.jlt-footer-link-blue {
    color: var(--main-blue);
    font-weight: 500;
    text-decoration: none;
    transition: var(--hover-transition);
    transition-property: color;
}
.jlt-footer-link-blue:hover {
    color: var(--dark-blue);
}
.jlt-footer-list {
    margin: 0;
}
.jlt-footer-list li {
    margin: 0.4rem 0;
}
.jlt-footer-list li a {
    color: var(--dark-blue);
    text-decoration: none;
    transition: var(--hover-transition);
    transition-property: color;
}
.jlt-footer-list li a:hover {
    color: var(--main-blue);
}
.jlt-footer-bottom {
    background-color: var(--dark-blue);
    padding: 20px 0;
    color: #fff;
}
.jlt-footer-langs a {
    color: var(--orange);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    margin-right: 6px;
    transition: var(--hover-transition);
    transition-property: color;
}
.jlt-footer-langs a:hover {
    color: #fff;
}
.jlt-footer-social {
    display: flex;
    gap: 24px;
}
.jlt-footer-social a {
    color: #fff;
    font-size: 20px;
    opacity: 0.7;
    transition: var(--hover-transition);
    transition-property: opacity;
}
.jlt-footer-social a:hover {
    opacity: 1;
}

/* ---- Progress Bar ---- */
.progress-bar {
    transition: width 0.4s ease;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .wizard-card {
        padding: 1.5rem 1.25rem;
        border-radius: 12px;
    }
    .wizard-card > .wizard-progress {
        margin: -1.5rem -1.25rem 1.5rem;
    }
    .wizard-card > .wizard-progress .progress {
        border-radius: 12px 12px 0 0;
    }
    .jlt-footer-bottom .row {
        text-align: center;
    }
    .jlt-footer-social {
        justify-content: center;
    }
    .min-vh-75 {
        min-height: auto;
    }
    .btn-tag-lg {
        flex: 1 1 calc(50% - 0.5rem);
    }
}

/* Bottom padding */
body {
    padding-bottom: 0;
}

/* Input group fix */
.input-group .form-control:focus {
    z-index: 1;
}
.input-group .input-group-text {
    border-radius: 30px 0 0 30px;
    border-color: var(--border-color);
    background: #fff;
    color: var(--dark-gray);
}
.input-group .form-control {
    border-radius: 0 30px 30px 0;
}

/* ============================================
   STEP 5 - Beruf Autocomplete & Dynamic Fields
   ============================================ */

/* Autocomplete dropdown */
.autocomplete-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid var(--border-color);
    border-top: none;
    border-radius: 0 0 16px 16px;
    max-height: 280px;
    overflow-y: auto;
    z-index: 50;
    box-shadow: 0px 15px 30px rgba(0,0,0,0.1);
    display: none;
}
.ac-group-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: #6b7685;
    padding: 8px 12px 4px;
    background: #f8f9fa;
    border-top: 1px solid var(--border-color);
}
.ac-group-label:first-child {
    border-top: none;
}
.ac-item {
    padding: 8px 12px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.1s;
}
.ac-item:hover {
    background: #f0f9fc;
    color: var(--main-blue);
}

/* Optional badge inline */
.badge-optional {
    font-size: 12px;
    font-weight: 400;
    color: #999;
}

/* Dynamic field section — progressive reveal */
.dynamic-field-section {
    animation: fadeIn 0.25s ease-in-out;
    border-left: 3px solid transparent;
    padding-left: 10px;
    margin-left: -10px;
    transition: border-color 0.2s, background 0.2s;
    border-radius: 4px;
}
.dynamic-field-section.hidden-field {
    display: none;
}

/* Peek field — visible top half, faded gradient overlay, non-interactive */
.dynamic-field-section.peek-field {
    position: relative;
    max-height: 80px;
    overflow: hidden;
    pointer-events: none;
    opacity: 0.7;
}
.dynamic-field-section.peek-field::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,1));
    pointer-events: none;
}

/* Required asterisk */
.badge-required {
    color: #b00020;
    font-weight: 700;
}

/* Validation error state */
.dynamic-field-section.field-invalid {
    border-left-color: #b00020;
    background: #fdf3f5;
}
.field-error {
    display: none;
    font-size: 12px;
    color: #b00020;
    font-weight: 600;
    margin-bottom: 6px;
}
.dynamic-field-section.field-invalid .field-error {
    display: block;
}

/* Required tag-group (Step 7: Arbeitsmodell / Verfügbarkeit) left empty */
.tag-group-invalid {
    outline: 2px solid #b00020;
    outline-offset: 6px;
    border-radius: 12px;
}

/* Birth-date datepicker must float above the wizard cards (same fix as my-profile.php) */
.datepicker {
    z-index: 11111 !important;
}

/* Inline tag input (Skills / Keywords) */
.skills-input-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border: 1px solid var(--border-color);
    border-radius: 30px;
    background: #fff;
    min-height: 46px;
    cursor: text;
}
.skills-input-wrap:focus-within {
    border-color: var(--dark-gray);
    box-shadow: none;
}
.skills-tags {
    display: contents;
}
.skills-input {
    border: none;
    outline: none;
    flex: 1 1 120px;
    min-width: 120px;
    font-size: 0.95rem;
    padding: 2px 0;
    background: transparent;
}
