.ju-tooltip {
    position: relative;
    display: flex;
    gap: 10px;
    cursor: pointer;
    align-items: baseline;
}

.ju-tooltip img {
    width: 13px;
    height: 13px;
    vertical-align: middle;
}

.ju-tooltip__description {
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.2s;
    position: absolute;
    bottom: 125%;
    /* oberhalb vom Icon */
    left: 50%;
    transform: translateX(-50%);
    width: 220px;
    background: #fff;
    color: #000;
    text-align: center;
    padding: 8px 10px;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    font-size: 13px;
    line-height: 1.3;
}

/* kleiner Pfeil */
.ju-tooltip__description::after {
    content: "";
    position: absolute;
    top: 100%;
    /* unten anfügen */
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: #fff transparent transparent transparent;
}

.ju-tooltip:hover .ju-tooltip__description {
    visibility: visible;
    opacity: 1;
}

.job-form-wrapper {
    max-width: 800px;
    margin: 20px auto
}

.job-form-wrapper fieldset {
    border: 1px solid transparent;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
    background: white;
}

.job-form-wrapper label {
    display: block;
    margin-top: 10px
}

.job-form-wrapper input[type=text],
.job-form-wrapper input[type=date],
.job-form-wrapper input[type=number],
.job-form-wrapper input[type=email],
.job-form-wrapper select,
.job-form-wrapper textarea {
    width: 100%;
    padding: 8px;
    margin-top: 4px
}

.job-form-wrapper button {
    margin-top: 15px
}

.hint {
    font-size: .85em;
    color: #666
}

#jobPreviewOverlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: rgba(0, 0, 0, .7);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

#jobPreviewContent {
    background: #fff;
    max-width: 900px;
    width: 90%;
    padding: 20px;
    border-radius: 8px;
    position: relative;
    max-height: 90%;
    overflow-y: auto;
}

#previewClose {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    cursor: pointer;
}

.offer__row {
    max-width: 1126px;
    margin: 0 auto;
}

.offer__col {
    border: 0;
    padding: 12px;
    line-height: 21px;
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #3a434f;
    margin-bottom: 12px;
}

.offer__col .offer__col--bg-color {
    background: white;
    border: 1px solid #dcdfe2;
}

.offer__images {
    width: 100%;
}

.offer__col .offer__headline {
    background-color: #f5f5f5;
    border: 0;
    box-sizing: border-box;
    color: #000 !important;
    font-family: sans-serif;
    font-size: 16px !important;
    font-weight: bold !important;
    line-height: 24px !important;
    margin: 0 !important;
    padding: 6px 12px;
    text-align: left;
    border-bottom: 1px solid #dcdfe2;
    word-break: break-word;
    overflow-wrap: break-word;
}

.offer__col .offer__desciption {
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: 14px;
    color: #3a434f;
}

.offer__col .offer__body {
    padding: 12px;
}

h2 {
    font-size: 20px !important;
    margin-bottom: 35px;
    margin-top: 10px;
}

.multi-select {
    position: relative;
    width: 100%;
    font-family: sans-serif;
}

input[type=checkbox]:checked:before {
    content: "\e116" !important;
    font-weight: 600;
}

.multi-select-display {
    border: 1px solid #00bcd4;
    border-radius: 6px;
    padding: 10px;
    background: #fff;
    cursor: pointer;
}



.multi-select-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 6px;
    z-index: 999;
    max-height: 200px;
    overflow-y: auto;
}

.multi-select.open .multi-select-dropdown {
    display: block;
}

.multi-select-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    cursor: pointer;
}

.multi-select-option:hover {
    background: #f3f4f6;
}

.multi-select-option input[type="checkbox"] {
    accent-color: #00bcd4;
}


#lcm-locations-fieldset .lcm-loc-card,
.application-email-item {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 12px;
    margin-bottom: 12px;
    background: #fff;
}

.application-email-item {
    gap: 8px;
    align-items: center;
    display: flex;
}

.lcm-loc-row {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
}

.lcm-loc-row select {
    flex: 1;
}

.lcm-loc-remove,
.lcm-email-remove,
.btn-remove {
    margin-left: auto;
    color: #b91c1c;
    font-size: 18px;
    cursor: pointer;
    background: none;
    border: 0;
}

.lcm-loc-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1.5fr;
    gap: 10px;
}

.lcm-loc-grid input,
.lcm-loc-row select {
    width: 100%;
    padding: 8px;
    border: 1px solid #dcdfe2;
    border-radius: 6px;
}

.lcm-locations__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.lcm-loc-add-wrap {
    margin-top: 14px;
    display: flex;
    justify-content: flex-start;
}

.lcm-loc-add-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 2px solid #55bac4;
    background: #fff;
    color: #55bac4;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-shadow: 0 4px 12px rgba(85, 186, 196, 0.25);
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.lcm-loc-add-btn:hover,
.lcm-loc-add-btn:focus {
    background: #55bac4;
    color: #fff;
    transform: translateY(-1px);
}

.lcm-loc-add-icon {
    width: 20px;
    height: 20px;
    display: block;
    fill: currentColor;
}

.lcm-loc-suggest-panel {
    margin-top: 10px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(17, 24, 39, 0.08);
    display: none;
    max-height: 260px;
    overflow-y: auto;
}

.lcm-loc-suggest-panel.is-visible {
    display: block;
}

.lcm-loc-suggest-group+.lcm-loc-suggest-group {
    border-top: 1px solid #f3f4f6;
}

.lcm-loc-suggest-group-title {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    color: #6b7280;
    padding: 8px 12px;
    margin: 0;
}

.lcm-loc-suggest-item {
    width: 100%;
    text-align: left;
    padding: 10px 12px;
    border: 0;
    background: transparent;
    cursor: pointer;
    font-size: 14px;
    color: #1f2937;
}

.lcm-loc-suggest-item:hover,
.lcm-loc-suggest-item:focus {
    background: #f9fafb;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.lcm-sec-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 400;
    color: var(--raast-heading-color, #111)
}

.lcm-sec-edit {
    border: 1px solid #e5eaee;
    background: #fff;
    padding: 4px;
    border-radius: 999px;
    cursor: pointer;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #475467;
    transition: background-color .2s ease, color .2s ease, box-shadow .2s ease;
}

.lcm-sec-edit:hover {
    background: #eef2f7;
    color: #111;
    box-shadow: 0 1px 3px rgba(15, 23, 42, .15);
}

.lcm-sec-edit__icon {
    width: 14px;
    height: 14px;
    transform: rotate(-18deg);
}

.lcm-sec-edit__icon svg {
    display: block;
    width: 100%;
    height: 100%;
    stroke: currentColor;
    stroke-width: 1.8;
    fill: none;
}

/* Overlay */
#secEditOverlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .55);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999
}

#secEditModal {
    background: #fff;
    width: min(520px, 92vw);
    border-radius: 10px;
    padding: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .2)
}



#secEditColor,
#secEditColor::-webkit-color-swatch-wrapper,
#secEditColor::-webkit-color-swatch,
#secEditColor::-moz-color-swatch {
    border-radius: 8px;
}

#secEditColor {
    width: 42px;
    height: 34px;
    padding: 0;
    border: 0;
    background: none;
    overflow: hidden;
    appearance: none;
    cursor: pointer;
}

#secEditColor::-webkit-color-swatch,
#secEditColor::-moz-color-swatch {
    border: 0;
}

#secEditModal h3 {
    margin: 0 0 12px;
}

#secEditModal .row {}

.media-uploader {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 10px;
    background: #fff
}

.media-drop {
    border: 1px dashed #cbd5e1;
    border-radius: 8px;
    padding: 16px;
    text-align: center;
    background: #fafafa;
    cursor: pointer
}

.media-drop p {
    margin: 0 0 8px;
    color: #64748b
}

.media-thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
    align-items: flex-start;
}

.media-thumb {
    position: relative;
    aspect-ratio: 4 / 3;
    border: 1px solid #e6ebf0;
    border-radius: 12px;
    overflow: hidden;
    background: #f7f9fb;
    box-shadow: 0 1px 2px rgba(16, 24, 40, .05);
    transition: box-shadow .15s ease, transform .06s ease, border-color .15s ease;
    max-width: 150px;
    width: 150px;
}

.media-thumb:hover {
    border-color: #d7dde3;
    box-shadow: 0 2px 8px rgba(16, 24, 40, .10);
    transform: translateY(-1px);
}

.media-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.media-remove {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 26px;
    height: 26px;
    line-height: 26px;
    text-align: center;
    border: none;
    border-radius: 999px;
    background: rgba(17, 24, 39, .75);
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    opacity: 0;
    transform: translate(2px, -2px) scale(.98);
    transition: opacity .15s ease, transform .15s ease, background .15s ease;
}

.media-thumb:hover .media-remove {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

.media-remove:hover {
    background: rgba(17, 24, 39, .9);
}

.ju__icon {
    width: 30px;
    height: 30px;
}

.ju__border-bottom--blue {
    border-bottom: 1px solid #55bac4;
}

.sec-edit-color input[type="color"] {
    -webkit-appearance: none;
    appearance: none;
    width: 40px;
    height: 40px;
    border: none;
    padding: 0;
    border-radius: 8px;
    /* Deine Rundung */
    overflow: hidden;
    cursor: pointer;
}

/* Der innere Farbwähler-Swatch */
.sec-edit-color input[type="color"]::-webkit-color-swatch {
    border-radius: 8px;
    /* gleiche Rundung */
    border: none;
}

.sec-edit-color input[type="color"]::-webkit-color-swatch-wrapper {
    padding: 0;
    border-radius: 8px;
}


/* helper */

.btn_add_style {
    font-size: 20px !important;
    padding: 0 !important;
    width: 30px;
    height: 30px;
    text-align: center;
}

.rotate-left {
    display: inline-block;
    transform: rotate(180deg);
}

.portal-edit-link-left a, .lcm-back a {
    color: #55bac4 !important;
    font-weight: bold;
    font-size: 14px;
}