.wtp-frontend-wrap {
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 8px;
  background: #fff;
  width: 100%;
  max-width: none;
  box-sizing: border-box;
}
.wtp-toolbar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 18px;
}
.wtp-toolbar-info {
  font-size: 14px;
  color: #555;
}
.wtp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.wtp-checkpoint {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 16px;
  background: #fafafa;
}
.wtp-checkpoint h4 {
  margin-top: 0;
  margin-bottom: 10px;
}
.wtp-checkpoint-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.wtp-meta-line {
  margin-bottom: 14px;
}
.wtp-readonly-box {
  border: 1px solid #dcdcde;
  background: #fff;
  padding: 10px 12px;
  border-radius: 6px;
  white-space: pre-wrap;
}
.wtp-basis-label {
  display: block;
  font-size: 10px;
  line-height: 1.1;
  color: #888;
  margin-bottom: 2px;
}
.wtp-basis-text {
  font-size: 11px;
  line-height: 1.05;
  color: rgba(0,0,0,0.45);
  white-space: pre-wrap;
  padding: 0;
  margin: 0;
  background: transparent;
  border: none;
}
.wtp-notice,
.wtp-success {
  padding: 12px 14px;
  border-radius: 6px;
  margin-bottom: 16px;
}
.wtp-notice {
  background: #f6f7f7;
  border: 1px solid #dcdcde;
}
.wtp-success {
  background: #edfaef;
  border: 1px solid #46b450;
}
.wtp-protocol-form input[type="text"],
.wtp-protocol-form input[type="datetime-local"],
.wtp-protocol-form input[type="file"],
.wtp-protocol-form select,
.wtp-protocol-form textarea,
.wtp-select-form select {
  width: 100%;
  padding: 8px;
  box-sizing: border-box;
}
.wtp-action-row {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.wtp-button {
  background: #2271b1;
  color: #fff;
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}
.wtp-button-secondary {
  background: #50575e;
}
.wtp-file-list,
.wtp-file-list-backend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.wtp-file-thumb {
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  text-decoration: none;
  max-width: 280px;
}
.wtp-file-thumb img {
  max-width: 280px;
  max-height: 280px;
  width: auto;
  height: auto;
  border: 1px solid #ddd;
  border-radius: 6px;
}
.wtp-overview-table {
  width: 100%;
  border-collapse: collapse;
}
.wtp-overview-table th,
.wtp-overview-table td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: left;
  vertical-align: top;
}

.wtp-status-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.wtp-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  max-width: 100%;
  padding: 4px 10px;
  border: 1px solid #dcdcde;
  border-radius: 999px;
  background: #f6f7f7;
  color: #1d2327;
  font-size: 12px;
  line-height: 1.3;
  font-weight: 600;
}
.wtp-status-badge-preview {
  display: none;
}
.wtp-status-lines {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.wtp-status-line {
  padding: 4px 0;
}
.wtp-status-line + .wtp-status-line {
  border-top: 1px solid #ddd;
  margin-top: 6px;
  padding-top: 6px;
}
.wtp-status-line strong {
  margin-right: 6px;
}

.wtp-project-panel{display:none;}
.wtp-project-panel.is-active{display:block;}
.wtp-checkpoint-card{display:none;}
.wtp-checkpoint-card.is-active{display:block;}


.wtp-file-item { position: relative; display: inline-block; margin: 0 12px 12px 0; vertical-align: top; }
.wtp-delete-file-safe { position: absolute; top: 6px; right: 6px; border: 0; border-radius: 999px; background: rgba(0,0,0,.72); color: #fff; width: 30px; height: 30px; line-height: 30px; padding: 0; cursor: pointer; font-size: 15px; text-align: center; z-index: 2; }
.wtp-delete-file-safe:hover { background: #b32d2e; color: #fff; }
.wtp-upload-hint { display: inline-block; margin-left: 8px; color: #646970; font-size: 13px; }


/* WTP 0.4.31 - einheitliche Foto-/Dateivorschau */
.wtp-file-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: flex-start;
}

.wtp-file-item {
    position: relative;
    width: 170px;
    min-height: 190px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    border: 1px solid #dcdcde;
    border-radius: 8px;
    background: #fff;
    padding: 8px;
    box-sizing: border-box;
    vertical-align: top;
}

.wtp-file-item .wtp-file-thumb {
    display: flex;
    width: 100%;
    min-height: 155px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-decoration: none;
    color: inherit;
}

.wtp-file-item img,
.wtp-file-item .wtp-file-thumb img {
    width: 150px !important;
    height: 130px !important;
    max-width: 150px !important;
    max-height: 130px !important;
    object-fit: contain;
    display: block;
    border: 0 !important;
    border-radius: 4px;
    background: #f6f7f7;
}

.wtp-file-item span {
    display: block;
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 12px;
    line-height: 1.3;
    text-align: center;
}

.wtp-delete-file-safe,
.wtp-delete-file {
    position: absolute;
    top: 6px;
    right: 6px;
    border: 0;
    border-radius: 999px;
    background: rgba(0,0,0,.72);
    color: #fff;
    width: 30px;
    height: 30px;
    line-height: 30px;
    padding: 0;
    cursor: pointer;
    font-size: 15px;
    text-align: center;
    z-index: 2;
}

.wtp-delete-file-safe:hover,
.wtp-delete-file:hover {
    background: #b32d2e;
    color: #fff;
}

/* WTP 0.4.32 PRO - Bild-UX, Upload-Feedback, dezenter Delete Button */
.wtp-file-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 12px;
    align-items: start;
}

.wtp-file-item {
    width: 100%;
    min-height: 178px;
    margin: 0;
}

.wtp-file-item .wtp-file-thumb {
    min-height: 145px;
}

.wtp-file-item img,
.wtp-file-item .wtp-file-thumb img {
    width: 100% !important;
    height: 118px !important;
    max-width: 100% !important;
    max-height: 118px !important;
    object-fit: cover;
    cursor: zoom-in;
}

.wtp-delete-file-safe,
.wtp-delete-file {
    top: 5px;
    right: 5px;
    width: 22px;
    height: 22px;
    line-height: 22px;
    font-size: 12px;
    opacity: 0.58;
    background: rgba(0,0,0,.62);
}

.wtp-file-item:hover .wtp-delete-file-safe,
.wtp-file-item:hover .wtp-delete-file {
    opacity: 1;
}

.wtp-upload-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.wtp-upload-spinner-safe {
    display: none;
    align-items: center;
    gap: 6px;
    color: #646970;
    font-size: 13px;
    line-height: 1.2;
}

.wtp-spinner-dot {
    width: 14px;
    height: 14px;
    border: 2px solid #dcdcde;
    border-top-color: #2271b1;
    border-radius: 999px;
    animation: wtpSpin 0.8s linear infinite;
    box-sizing: border-box;
}

@keyframes wtpSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

#wtp-image-overlay {
    display: none;
    position: fixed;
    z-index: 999999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 24px;
    box-sizing: border-box;
    background: rgba(0,0,0,.84);
    align-items: center;
    justify-content: center;
}

#wtp-image-overlay.is-active {
    display: flex;
}

#wtp-image-overlay img {
    max-width: 92vw;
    max-height: 88vh;
    width: auto;
    height: auto;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 10px 40px rgba(0,0,0,.35);
}

.wtp-image-overlay-close {
    position: fixed;
    top: 18px;
    right: 18px;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 999px;
    background: #fff;
    color: #1d2327;
    font-size: 24px;
    line-height: 36px;
    cursor: pointer;
    z-index: 1000000;
}

body.wtp-overlay-open {
    overflow: hidden;
}

/* WTP 0.4.32.5 Live-Speichern */
.wtp-live-save-status {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    margin-left: 10px;
    padding: 4px 8px;
    border-radius: 999px;
    font-size: 12px;
    line-height: 1.2;
    background: #f6f7f7;
    color: #50575e;
    border: 1px solid #dcdcde;
}
.wtp-live-save-status.is-saving,
.wtp-live-save-status.is-dirty {
    background: #fff8e5;
    border-color: #f0c36d;
    color: #664400;
}
.wtp-live-save-status.is-saved {
    background: #edf7ed;
    border-color: #9fd29f;
    color: #1f5f1f;
}
.wtp-live-save-status.is-error {
    background: #fcf0f1;
    border-color: #d63638;
    color: #8a2424;
}

/* WTP 0.4.32.6 - Live-Save ohne Speicherbuttons + kleiner X-Button fuer Bilder */
.wtp-live-save-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.wtp-live-save-note { color: #646970; font-size: 13px; }
.wtp-action-row .wtp-button[name="save_mode"], .wtp-action-row button[name="save_mode"] { display: none !important; }
.wtp-delete-file-safe, .wtp-delete-file { top: 4px !important; right: 4px !important; width: 18px !important; height: 18px !important; min-width: 18px !important; min-height: 18px !important; line-height: 16px !important; padding: 0 !important; border: 1px solid rgba(255,255,255,.85) !important; border-radius: 999px !important; background: rgba(30,30,30,.62) !important; color: #fff !important; font-size: 15px !important; font-weight: 700 !important; opacity: .42; box-shadow: 0 1px 3px rgba(0,0,0,.25); }
.wtp-file-item:hover .wtp-delete-file-safe, .wtp-file-item:hover .wtp-delete-file, .wtp-delete-file-safe:focus, .wtp-delete-file:focus { opacity: 1; background: #b32d2e !important; }
@media (hover: none) { .wtp-delete-file-safe, .wtp-delete-file { opacity: .78; } }

/* WTP 0.4.32.7 - Eingabefelder in Frontend-Feldkonfiguration */
.wtp-status-input-row {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
}
.wtp-status-input-row .wtp-status-input {
    flex: 1 1 auto;
    min-width: 0;
}
.wtp-status-input-unit {
    flex: 0 0 auto;
    color: #50575e;
    font-size: 14px;
    line-height: 1.2;
}
@media (max-width: 640px) {
    .wtp-status-input-row {
        align-items: stretch;
    }
    .wtp-status-input-unit {
        padding-top: 9px;
    }
}


/* WTP 0.4.32.9 - Projektbereich, Adresse und Satelliten-Vorschau */
.wtp-checkpoint-main {
    min-width: 0;
}
.wtp-project-card,
.wtp-checkpoint-card {
    background: #fff;
    border: 1px solid #dcdcde;
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 1px 2px rgba(0,0,0,.04);
}
.wtp-project-card-title {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 16px;
}
.wtp-project-card .wtp-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    align-items: end;
}
.wtp-project-card label,
.wtp-address-card label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #1d2327;
}
.wtp-project-card input[type="text"],
.wtp-project-card input[type="datetime-local"],
.wtp-project-card select,
.wtp-project-card textarea,
.wtp-address-card input[type="text"] {
    width: 100%;
    max-width: none;
    min-height: 42px;
    border-radius: 7px;
    border: 1px solid #8c8f94;
    padding: 8px 10px;
    font-size: 15px;
    box-sizing: border-box;
}
.wtp-project-card textarea {
    min-height: 110px;
}
.wtp-address-card {
    margin: 18px 0;
    padding: 14px;
    border: 1px solid #dcdcde;
    border-radius: 10px;
    background: #f9fafb;
}
.wtp-address-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
}
.wtp-address-help {
    margin-top: 6px;
    color: #646970;
    font-size: 13px;
}
.wtp-sat-preview {
    margin-top: 12px;
    min-height: 110px;
    border: 1px dashed #c3c4c7;
    border-radius: 9px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #646970;
    text-align: center;
}
.wtp-sat-preview img {
    width: 100%;
    max-height: 260px;
    object-fit: cover;
    display: block;
}
.wtp-sat-preview .wtp-sat-caption {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 6px 8px;
    border-radius: 6px;
    background: rgba(255,255,255,.92);
    color: #1d2327;
    font-size: 13px;
    text-align: left;
}
.wtp-sat-preview:has(img) {
    position: relative;
    display: block;
    border-style: solid;
}
.wtp-checkpoint-nav {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 14px;
}
.wtp-button,
.wtp-button-secondary {
    border-radius: 7px !important;
}
@media (max-width: 780px) {
    .wtp-project-card .wtp-grid,
    .wtp-address-row {
        grid-template-columns: 1fr;
    }
    .wtp-address-row .wtp-button {
        width: 100%;
    }
}

/* WTP 0.4.32.10 - robuste Sat-Vorschau + Jetzt-Buttons */
.wtp-time-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    align-items: center;
}
.wtp-time-now-btn {
    min-height: 42px;
    padding: 0 12px;
    border: 1px solid #c3c4c7;
    border-radius: 7px;
    background: #f6f7f7;
    color: #1d2327;
    cursor: pointer;
    font-size: 13px;
    white-space: nowrap;
}
.wtp-time-now-btn:hover {
    background: #fff;
    border-color: #8c8f94;
}
.wtp-sat-loading {
    width: 100%;
    padding: 18px;
    color: #646970;
    text-align: center;
}
@media (max-width: 780px) {
    .wtp-time-row {
        grid-template-columns: 1fr;
    }
    .wtp-time-now-btn {
        width: 100%;
    }
}

/* WTP 0.4.32.11 - Sat-Vorschau ueber Google Maps JS statt Static Image */
.wtp-sat-preview .wtp-sat-map {
    width: 100%;
    height: 260px;
    min-height: 260px;
    border-radius: 8px;
    overflow: hidden;
    background: #f0f0f1;
}
.wtp-sat-preview .wtp-sat-loading {
    position: absolute;
    left: 12px;
    top: 12px;
    z-index: 2;
    width: auto;
    padding: 8px 10px;
    border-radius: 6px;
    background: rgba(255,255,255,0.9);
    box-shadow: 0 1px 4px rgba(0,0,0,0.12);
}
.wtp-sat-preview {
    position: relative;
}

/* WTP 0.4.32.13 - echtes Layout-Fix: keine <div>-Elemente mehr in <p>, klare Projektfelder */
.wtp-project-card .wtp-project-grid-clean {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 18px;
    align-items: start;
}
.wtp-project-field {
    margin: 0;
    min-width: 0;
}
.wtp-project-field label,
.wtp-address-card label {
    display: block;
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.25;
}
.wtp-project-card .wtp-time-row {
    display: flex;
    align-items: stretch;
    gap: 8px;
}
.wtp-project-card .wtp-time-row input[type="datetime-local"] {
    flex: 1 1 auto;
    min-width: 0;
}
.wtp-project-card .wtp-time-now-btn {
    flex: 0 0 auto;
    min-width: 58px;
    padding: 0 12px;
}
.wtp-address-card {
    margin: 24px 0;
    padding: 18px;
    border-radius: 12px;
    background: #f7fbff;
}
.wtp-address-row {
    display: flex;
    gap: 10px;
    align-items: stretch;
}
.wtp-address-row input[type="text"] {
    flex: 1 1 auto;
    min-width: 0;
}
.wtp-address-row .wtp-button {
    flex: 0 0 auto;
    white-space: nowrap;
}
.wtp-sat-preview {
    min-height: 220px;
    margin-top: 14px;
}
.wtp-sat-preview .wtp-sat-map {
    height: 280px;
    min-height: 280px;
}
.wtp-project-notes {
    margin-top: 8px;
}
.wtp-project-notes textarea {
    width: 100%;
    min-height: 120px;
}
@media (max-width: 900px) {
    .wtp-project-card .wtp-project-grid-clean {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 640px) {
    .wtp-address-row,
    .wtp-project-card .wtp-time-row {
        flex-direction: column;
    }
    .wtp-address-row .wtp-button,
    .wtp-project-card .wtp-time-now-btn {
        width: 100%;
    }
}

/* WTP 0.4.32.15 - Mobile Projektlayout final + Sat-Hinweis entfernt */
.wtp-address-help { display: none !important; }
.wtp-checkpoint-main,
.wtp-checkpoint-stage,
.wtp-project-card { min-width: 0; }
.wtp-project-card { box-sizing: border-box; }
.wtp-project-card .wtp-time-row {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: stretch;
    gap: 8px;
}
.wtp-project-card .wtp-time-row input[type="datetime-local"],
.wtp-project-card .wtp-time-row input[type="text"] {
    min-width: 0 !important;
    width: 100% !important;
    box-sizing: border-box;
}
.wtp-project-card .wtp-time-now-btn {
    width: auto !important;
    min-width: 58px !important;
    max-width: 64px;
    padding: 0 8px !important;
    white-space: nowrap;
}
@media (max-width: 780px) {
    .wtp-checkpoint-layout { display: block !important; }
    .wtp-checkpoint-sidebar { margin-bottom: 14px !important; }
    .wtp-checkpoint-main,
    .wtp-checkpoint-stage { width: 100% !important; max-width: 100% !important; }
    .wtp-checkpoint-nav {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        gap: 8px !important;
        align-items: stretch;
    }
    .wtp-checkpoint-nav .wtp-button {
        width: 100% !important;
        min-height: 38px;
        padding: 8px 10px !important;
        font-size: 13px !important;
        line-height: 1.2 !important;
        white-space: normal !important;
    }
    .wtp-checkpoint-nav .wtp-button:nth-child(2) {
        grid-column: 1 / -1;
        order: 3;
    }
    .wtp-checkpoint-nav .wtp-step-info {
        grid-column: 1 / -1;
        order: 4;
        min-height: 0;
    }
    .wtp-project-card {
        padding: 14px !important;
        border-radius: 12px !important;
        overflow: hidden;
    }
    .wtp-project-card-title { margin-bottom: 16px !important; }
    .wtp-project-card .wtp-project-grid-clean {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
    .wtp-project-field label,
    .wtp-address-card label {
        font-size: 14px !important;
        margin-bottom: 6px !important;
    }
    .wtp-project-field input,
    .wtp-project-field select,
    .wtp-address-row input,
    .wtp-project-notes textarea {
        font-size: 16px !important;
        padding: 10px 11px !important;
        min-height: 42px !important;
        box-sizing: border-box;
    }
    .wtp-project-card .wtp-time-row {
        grid-template-columns: minmax(0, 1fr) 56px !important;
        gap: 6px !important;
        flex-direction: row !important;
    }
    .wtp-project-card .wtp-time-now-btn {
        min-width: 56px !important;
        max-width: 56px !important;
        height: 42px !important;
        padding: 0 !important;
        font-size: 12px !important;
        border-radius: 7px !important;
    }
    .wtp-address-card {
        margin: 18px 0 !important;
        padding: 14px !important;
        border-radius: 12px !important;
    }
    .wtp-address-row {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 8px !important;
    }
    .wtp-address-row .wtp-button {
        width: 100% !important;
        min-height: 40px !important;
        padding: 9px 10px !important;
        font-size: 13px !important;
        white-space: normal !important;
    }
    .wtp-sat-preview {
        min-height: 150px !important;
        margin-top: 10px !important;
        border-radius: 10px !important;
    }
    .wtp-sat-preview .wtp-sat-map {
        height: 170px !important;
        min-height: 170px !important;
    }
    .wtp-sat-preview > span { display: none !important; }
    .wtp-project-notes textarea { min-height: 110px !important; }
}
@media (max-width: 380px) {
    .wtp-project-card { padding: 12px !important; }
    .wtp-project-card .wtp-time-row {
        grid-template-columns: minmax(0, 1fr) 50px !important;
        gap: 5px !important;
    }
    .wtp-project-card .wtp-time-now-btn {
        min-width: 50px !important;
        max-width: 50px !important;
        font-size: 11px !important;
    }
}

/* WTP 0.4.32.16 - Mobile Foto-Karten hoeher/proportional, Desktop unveraendert */
@media (max-width: 768px) {
    .wtp-file-list {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }
    .wtp-file-item {
        width: 100% !important;
        min-height: 0 !important;
        padding: 10px !important;
        border-radius: 12px !important;
    }
    .wtp-file-item .wtp-file-thumb {
        width: 100% !important;
        min-height: 0 !important;
        gap: 8px !important;
    }
    .wtp-file-item img,
    .wtp-file-item .wtp-file-thumb img {
        width: 100% !important;
        height: clamp(220px, 72vw, 330px) !important;
        max-width: 100% !important;
        max-height: none !important;
        object-fit: cover !important;
        object-position: center center !important;
        border-radius: 8px !important;
    }
    .wtp-file-item span {
        max-width: 100% !important;
        font-size: 14px !important;
        line-height: 1.35 !important;
        padding: 3px 4px 0 !important;
    }
    .wtp-delete-file-safe,
    .wtp-delete-file {
        top: 8px !important;
        right: 8px !important;
        width: 22px !important;
        height: 22px !important;
        min-width: 22px !important;
        min-height: 22px !important;
        line-height: 20px !important;
        opacity: .82 !important;
    }
}

/* WTP 0.4.32.17 - Adresse X-Button nur bei Inhalt */
.wtp-address-input-wrap { position: relative; flex: 1 1 auto; min-width: 0; }
.wtp-address-input-wrap input[type="text"] { width: 100%; padding-right: 42px !important; box-sizing: border-box; }
.wtp-clear-address-btn { position: absolute; right: 8px; top: 50%; transform: translateY(-50%); width: 28px; height: 28px; border: 1px solid #ccd0d4; border-radius: 999px; background: #fff; color: #50575e; cursor: pointer; font-size: 18px; line-height: 24px; padding: 0; text-align: center; z-index: 2; }
.wtp-clear-address-btn:hover { background: #f0f0f1; color: #1d2327; }
.wtp-clear-address-btn[hidden] { display: none !important; }
@media (max-width: 780px) { .wtp-address-row { grid-template-columns: 1fr !important; } .wtp-address-input-wrap { width: 100%; } .wtp-clear-address-btn { width: 30px; height: 30px; } }
