:root {
    --dt-bt-accent: #2c3a3f;
    --dt-bt-accent-dark: #1D252D;
    --dt-bt-dark: #2b343b;
    --dt-bt-dark-light: #3e4b55;
    --dt-bt-gray-light: #9DB0AC;
    --dt-bt-white: #FFFFFF;
    --dt-bt-bg: #F8F9FA;
    --dt-bt-border: #E0E0E0;
    --shadow-soft: 0 1px 6px rgba(43, 52, 59, 0.08);
    --shadow-medium: 0 10px 25px rgba(43, 52, 59, 0.12);
    --radius: 6px;
    --radius-lg: 10px;
}

#dt-bt-app {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--dt-bt-dark);
    margin: 0;
    padding: 0;
    width: 100%;
}

.dt-bt-wrap {
    display: flex;
    gap: 40px;
    align-items: start;
    width: 100%;
}

@media (max-width: 980px) {
    .dt-bt-wrap {
        flex-direction: column;
    }

    .dt-bt-sidebar,
    .dt-bt-main {
        width: 100% !important;
        max-width: none !important;
    }
}

.dt-bt-sidebar {
    flex: 62;
    min-width: 0;
    overflow: visible;
}

/* Sticky Empfehlung-Box */
#dt-bt-main {
    flex: 38;
    min-width: 0;
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 160px !important;
    align-self: flex-start !important;
    z-index: 100 !important;
    transform: none !important;
}

/* WICHTIG: Sticky darf nicht durch overflow oder transforms blockiert werden */
#dt-bt-main,
#dt-bt-main * {
    transform: none !important;
}

/* Force overflow:visible on common WP/Astra/Uncode/Elementor parents if they break sticky */
.dt-bt-app,
.dt-bt-wrap,
.entry-content,
.ast-container,
#primary,
#main,
.site-content,
.wpb_wrapper,
.wpb_raw_code,
.row,
.uncol,
.uncoltable,
.uncell,
.uncont,
.no-block-padding {
    overflow: visible !important;
}

.dt-bt-step-card {
    position: relative;
    padding: 24px !important;
}

.dt-bt-step-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f0f4f3;
    /* Light divider line */
}

.dt-bt-step-num {
    width: 32px;
    height: 32px;
    background: var(--dt-bt-accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.dt-bt-step-title {
    margin: 0 !important;
    font-size: 1.5rem !important;
    color: var(--dt-bt-dark);
    font-weight: 700;
}

.dt-bt-card {
    background: var(--dt-bt-white);
    border: 1px solid var(--dt-bt-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    padding: 24px;
}

.dt-bt-card h3 {
    margin: 0 0 6px 0;
    font-size: 1rem;
    color: var(--dt-bt-dark);
    font-weight: 700;
}

.dt-bt-muted {
    color: #60706c;
    font-size: 0.8rem;
    margin-bottom: 20px;
    line-height: 1.4;
}

/* Experience / Throw Style Grid */
.dt-bt-volume-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 10px;
}

.dt-bt-volume-card {
    background: #fff;
    border: 1px solid var(--dt-bt-border);
    border-radius: var(--radius);
    padding: 12px 6px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.dt-bt-volume-card:hover {
    border-color: var(--dt-bt-accent);
    background: #fdfdfd;
}

.dt-bt-volume-card.active {
    border-color: var(--dt-bt-accent);
    border-width: 2px;
    background: #f8f9fa;
    padding: 11px 5px;
    /* Adjust for border width */
}

.dt-bt-v-icon {
    font-size: 1.8rem;
    color: var(--dt-bt-accent);
    margin-bottom: 8px;
}

.dt-bt-v-label {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--dt-bt-dark);
}

.dt-bt-v-info {
    font-size: 0.75rem;
    color: var(--dt-bt-gray-light);
    margin-top: 4px;
}

/* Edition Toggle */
.dt-bt-edition-toggle {
    display: flex;
    gap: 10px;
}

.dt-bt-toggle-btn {
    flex: 1;
    padding: 10px;
    border: 1px solid var(--dt-bt-border);
    background: #fff;
    color: var(--dt-bt-dark);
    border-radius: var(--radius);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.9rem;
}

.dt-bt-toggle-btn:hover {
    border-color: var(--dt-bt-accent);
    color: var(--dt-bt-accent);
}

.dt-bt-toggle-btn.active {
    background: var(--dt-bt-accent);
    border-color: var(--dt-bt-accent);
    color: white;
}

/* Setup / Equipment Cards */
.dt-bt-hosting-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 15px;
}

.dt-bt-hosting-card {
    background: #fff;
    border: 2px solid var(--dt-bt-border);
    border-radius: var(--radius);
    padding: 16px 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.dt-bt-hosting-card:hover {
    border-color: var(--dt-bt-accent);
    background: #fdfdfd;
}

.dt-bt-hosting-card.active {
    border-color: var(--dt-bt-accent);
    border-width: 2px;
    background: #f8f9fa;
}

.dt-bt-hosting-icon {
    font-size: 2rem;
    color: var(--dt-bt-accent);
    margin-bottom: 10px;
}

.dt-bt-hosting-title {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--dt-bt-dark);
    margin-bottom: 4px;
}

.dt-bt-hosting-desc {
    font-size: 0.75rem;
    color: var(--dt-bt-gray-light);
}

/* Features List */
.dt-bt-features-list {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dt-bt-feature-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    background: #fff;
    border: 1px solid var(--dt-bt-border);
    border-radius: var(--radius);
    transition: all 0.2s ease;
}

.dt-bt-feature-item:hover {
    border-color: var(--dt-bt-accent);
    background: #fdfdfd;
}

.dt-bt-feature-left {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.dt-bt-feature-left i.fa {
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.dt-bt-feature-left span {
    font-size: 0.9rem;
    color: var(--dt-bt-dark);
    font-weight: 500;
}

/* Toggle Switch */
.dt-bt-toggle-switch {
    position: relative;
    display: inline-block;
    width: 38px;
    height: 18px;
    flex-shrink: 0;
}

.dt-bt-toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.dt-bt-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 18px;
}

.dt-bt-toggle-slider:before {
    position: absolute;
    content: "";
    height: 14px;
    width: 14px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

input:checked+.dt-bt-toggle-slider {
    background-color: var(--dt-bt-accent);
}

input:checked+.dt-bt-toggle-slider:before {
    transform: translateX(20px);
}

/* Badges */
.dt-bt-badge {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.7rem !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    margin-left: 6px;
    color: inherit;
}

.dt-bt-badge-pro {
    background: var(--dt-bt-accent) !important;
    color: #fff !important;
}

.dt-bt-badge-ent {
    background: #ff9800 !important;
    color: #fff !important;
}

/* Slider Section */
.dt-bt-slider-container {
    padding: 5px 0;
    padding: 10px 0;
}

.dt-bt-slider-val {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dt-bt-accent);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.95rem;
    margin: 0 auto 20px;
    width: fit-content;
    min-width: 80px;
    box-shadow: 0 4px 10px rgba(44, 58, 63, 0.2);
}

.dt-bt-slider-wrapper {
    position: relative;
    padding: 0 8px;
}

.dt-bt-hint-icon {
    cursor: pointer;
    font-size: 1.1rem;
    color: var(--dt-bt-gray-light);
    transition: color 0.2s;
}

.dt-bt-hint-icon:hover {
    color: var(--dt-bt-accent) !important;
}

.dt-bt-hint {
    color: #888;
    font-size: 0.9rem;
    font-weight: 400;
    margin-left: 5px;
}

.dt-bt-label-wrap {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.dt-bt-label-wrap h4 {
    margin: 0;
    font-weight: 700;
    font-size: 1.1rem !important;
    color: #111;
    /* Labels */
}

.dt-bt-slider,
input[type="range"].dt-bt-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100% !important;
    display: block;
    height: 6px;
    background: #e0e0e0 !important;
    border-radius: 3px;
    outline: none;
    cursor: pointer;
    margin: 10px 0;
}

.dt-bt-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: var(--dt-bt-accent);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: none;
    position: relative;
    z-index: 2;
}

.dt-bt-slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    padding: 0 5px;
    font-size: 0.85rem;
    color: #555;
    user-select: none;
}

.dt-bt-slider-labels span {
    width: 30px;
    text-align: center;
    flex-shrink: 0;
}

/* Recommendation Card */
.dt-bt-recommendation-card {
    background: white;
    border: 1px solid var(--dt-bt-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 20px;
}

.dt-bt-recommendation-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.dt-bt-rec-header {
    background: var(--dt-bt-dark);
    color: white;
    padding: 16px 20px;
    text-align: center;
}

.dt-bt-rec-header h3 {
    margin: 0 !important;
    font-size: 1.25rem !important;
    color: white !important;
    font-weight: 700;
}

.dt-bt-rec-body {
    padding: 30px 20px;
    text-align: center;
}

.dt-bt-rec-image {
    width: 100%;
    max-width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fafafa;
    border-radius: var(--radius);
    border: 1px solid #f0f0f0;
}

.dt-bt-rec-image img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.dt-bt-rec-title {
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1.4;
    color: var(--dt-bt-dark);
    margin-bottom: 20px;
}

.dt-bt-rec-summary {
    background: #f8faf9;
    padding: 16px;
    border-radius: var(--radius);
    margin-bottom: 20px;
}

.dt-bt-rec-summary .dt-bt-summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #e2ece9;
}

.dt-bt-rec-summary .dt-bt-summary-row:last-child {
    border-bottom: none;
}

/* Recommendation Info List */
.dt-bt-info-list {
    background: #fdfdfd;
    border: 1px solid #f0f0f0;
    border-radius: var(--radius);
    padding: 12px !important;
}

.dt-bt-info-list i {
    width: 20px;
    text-align: center;
}

.dt-bt-shop-btn,
.dt-bt-consult-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 24px;
    border-radius: var(--radius);
    font-weight: 700;
    text-decoration: none !important;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.dt-bt-shop-btn {
    background: var(--dt-bt-dark);
    color: white !important;
    margin-bottom: 12px;
}

.dt-bt-shop-btn:hover {
    background: var(--dt-bt-dark-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(43, 52, 59, 0.3);
}

.dt-bt-consult-btn {
    background: var(--dt-bt-accent);
    color: white !important;
}

.dt-bt-consult-btn:hover {
    background: var(--dt-bt-accent-dark);
    transform: translateY(-2px);
}

.dt-bt-shop-btn:active,
.dt-bt-shop-btn:visited,
.dt-bt-shop-btn:focus {
    color: white !important;
    text-decoration: none;
}

/* Summary Box */
.dt-bt-summary {
    margin-top: 30px;
    background: #f8faf9;
    padding: 20px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--dt-bt-border);
}

.dt-bt-summary-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #e2ece9;
}

.dt-bt-summary-row:last-child {
    border-bottom: none;
}

.dt-bt-s-label {
    color: #555;
    font-size: 0.95rem;
    font-weight: 500;
}

.dt-bt-s-val {
    color: #555;
    font-weight: 700;
    font-size: 1rem;
}

/* Loader, Error & Compact Debug */
.dt-bt-no-results {
    text-align: center;
    padding: 60px 20px;
    background: var(--dt-bt-bg);
    border-radius: var(--radius-lg);
    color: #60706c;
    border: 1px dashed var(--dt-bt-border);
    font-size: 0.95rem;
}

.dt-bt-error {
    background: #fff5f5;
    color: #c53030;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #feb2b2;
    font-size: 0.9rem;
}

/* Super Compact Debug / Inspector */
.dt-bt-debug-info {
    position: fixed;
    bottom: 10px;
    right: 10px;
    background: rgba(255, 249, 196, 0.9);
    padding: 8px 12px;
    border: 1px solid #fbc02d;
    border-radius: 6px;
    font-size: 10px;
    z-index: 9999;
}

/* Modal System */
html.dt-bt-modal-open,
body.dt-bt-modal-open {
    overflow: hidden !important;
    height: 100% !important;
}

.dt-bt-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(29, 37, 45, 0.6);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(4px);
    padding: 160px 20px 10px 10px;
    /* Increased top padding as requested */
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.dt-bt-modal {
    background: white;
    width: 95%;
    max-width: 550px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: dt-bt-fade-in 0.3s ease;
}

@keyframes dt-bt-fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dt-bt-modal-header {
    background: var(--dt-bt-accent);
    color: white;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dt-bt-modal-header h3 {
    margin: 0 !important;
    font-size: 1.25rem !important;
    color: white !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dt-bt-modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.dt-bt-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.dt-bt-modal-body {
    padding: 20px;
    color: #444;
    line-height: 1.5;
    font-size: 0.9rem;
}

.dt-bt-modal-body p {
    margin-bottom: 15px;
    font-size: 16px !important;
}

.dt-bt-modal-body ul {
    margin: 20px 0;
    padding-left: 20px;
    list-style: disc;
}

.dt-bt-modal-body li {
    margin-bottom: 10px;
    font-size: 16px !important;
}

.dt-bt-modal-body li strong {
    color: var(--dt-bt-dark);
}

.dt-bt-info-box {
    background: #f8faf9;
    border-left: 4px solid var(--dt-bt-accent);
    padding: 16px;
    border-radius: 4px;
    margin-top: 20px;
}

.dt-bt-info-box h5 {
    margin: 0 0 8px 0;
    color: var(--dt-bt-accent);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.dt-bt-debug-table {
    width: 100%;
    background: #fff;
    border: 1px solid #ddd;
    font-size: 11px;
    /* Increased from 9px */
    border-collapse: collapse;
    color: #444;
    /* Darker for readability */
}

.dt-bt-debug-table th,
.dt-bt-debug-table td {
    padding: 6px 8px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.dt-bt-debug-table th:nth-child(1) {
    width: 40px;
}

.dt-bt-debug-table th:nth-child(2) {
    width: 25%;
}

.dt-bt-debug-table th:nth-child(3) {
    width: 15%;
}

.dt-bt-debug-table th:nth-child(4) {
    width: 40px;
}

.dt-bt-debug-table code {
    font-size: 11px;
    /* Increased from 8px */
    color: #1d8296;
    /* Brand color for emphasis */
    background: #f0f7f8;
    padding: 2px 4px;
    border-radius: 3px;
}

.dt-bt-selected-features {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* Basis: pill */
.dt-bt-feature-badge {
    border-radius: 999px;
    padding: 6px 12px;
    font-size: .85rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid transparent;
    line-height: 1;
}

/* ✅ Grau (Auto Attendant, IVR, Video, MS365) */
.dt-bt-feature-badge--gray {
    background: #f3f4f6;
    /* hellgrau */
    color: #111827;
    /* fast schwarz */
    border-color: #e5e7eb;
    /* grauer Rand */
}

/* ✅ Gelb (Failover, Skill-Routing) */
.dt-bt-feature-badge--yellow {
    background: #fff4d6;
    /* pastellgelb */
    color: #8a5a00;
    /* braun/orange Text */
    border-color: #f0d58c;
    /* gelblicher Rand */
}

.dt-bt-feature-badge i {
    font-size: .85rem;
    opacity: .95;
}

/* Abstand zwischen Badge-Block und Shop-Button */
.dt-bt-selected-features {
    margin-bottom: 14px;
    /* Wert nach Geschmack: z.B. 10–20px */
}


.dt-bt-inline-notice__text {
    font-size: 0.9rem;
    line-height: 1.45;
    color: #333;
    text-align: left;
    /* ✅ linksbündig */
}

/* --- Consultation Form --- */
#dt-bt-consult-selection-summary {
    margin-bottom: 25px !important;
    /* More distance to Name field */
    padding: 12px;
    background: #f8faf9;
    border-radius: var(--radius);
    border: 1px solid var(--dt-bt-border);
}

.dt-bt-rec-summary--narrow .dt-bt-summary-row {
    padding: 1px 0;
}

.dt-bt-consult-selection-summary .dt-bt-rec-summary {
    margin-top: 5px;
}

.dt-bt-consult-summary-title {
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--dt-bt-accent);
    font-size: 1.15rem;
    /* Larger title */
}

#dt-bt-consult-form .dt-bt-form-group {
    margin-bottom: 20px !important;
    /* Increased space below inputs */
}

#dt-bt-consult-form .dt-bt-form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 5px !important;
    /* Minimal gap to next element */
}

#dt-bt-consult-form .dt-bt-form-row .dt-bt-form-group {
    flex: 1;
    margin-bottom: 0 !important;
    /* No extra margin inside row */
}

#dt-bt-consult-form label {
    display: block !important;
    margin: 0 0 -4px 0 !important;
    /* Pull input up */
    padding: 0 !important;
    font-weight: 600;
    font-size: 0.85rem;
    line-height: 1.1 !important;
}

#dt-bt-consult-form input[type="text"],
#dt-bt-consult-form input[type="email"],
#dt-bt-consult-form input[type="tel"],
#dt-bt-consult-form textarea {
    width: 100% !important;
    padding: 8px 12px 8px 14px !important;
    /* Slightly less left padding */
    border: 1px solid var(--dt-bt-border) !important;
    border-radius: var(--radius) !important;
    font-family: inherit;
    font-size: 0.95rem;
    box-sizing: border-box;
}

#dt-bt-consult-form textarea {
    resize: vertical;
}

.dt-bt-form-privacy {
    margin-top: 15px !important;
    margin-bottom: 20px !important;
    /* Increased space to buttons */
    padding: 10px;
    background: #fefefe;
    border-radius: var(--radius);
    border: 1px solid #eee;
}

.dt-bt-check-row {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 12px !important;
    align-items: flex-start !important;
    margin-top: 5px;
}

/* Specific for callback under phone field */
#label-phone+input+.dt-bt-check-row {
    margin-top: 15px !important;
}

.dt-bt-check-box {
    flex-shrink: 0 !important;
    padding-top: 2px !important;
}

.dt-bt-check-box input[type="checkbox"] {
    margin: 0 !important;
    padding: 0 !important;
    width: 17px !important;
    height: 17px !important;
    display: block !important;
}

.dt-bt-check-label {
    flex: 1 !important;
    font-size: 0.8125rem !important;
    line-height: 1.4 !important;
    color: #555;
    font-weight: 400 !important;
}

.dt-bt-check-label a {
    color: var(--dt-bt-accent);
    text-decoration: underline;
}

.dt-bt-form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 5px;
    /* Minimal space to buttons */
}

.dt-bt-btn-cancel,
.dt-bt-btn-submit {
    padding: 6px 20px !important;
    border-radius: var(--radius) !important;
    font-weight: 600 !important;
    /* Semibold instead of bold */
    font-size: 13px !important;
    /* Smaller text */
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
    border: none;
}

.dt-bt-btn-cancel {
    background: #eee;
    color: #555;
}

.dt-bt-btn-cancel:hover {
    background: #e0e0e0;
}

.dt-bt-btn-submit {
    background: #f0f0f0 !important;
    /* Neutral when disabled */
    color: #999 !important;
    border-radius: var(--radius) !important;
}

.dt-bt-btn-submit.dt-bt-btn-valid {
    background: var(--dt-bt-accent) !important;
    /* Petrol when valid */
    color: white !important;
}

.dt-bt-btn-submit.dt-bt-btn-valid:hover {
    background: var(--dt-bt-accent-dark) !important;
}

.dt-bt-btn-submit:disabled {
    opacity: 0.6 !important;
    cursor: not-allowed !important;
}

@media (max-width: 600px) {
    #dt-bt-consult-form .dt-bt-form-row {
        flex-direction: column;
        gap: 20px !important;
    }

    /* Extra space between Callback/Phone row and Nachricht field on mobile */
    .dt-bt-form-row+.dt-bt-form-group {
        margin-top: 25px !important;
    }

    .dt-bt-modal-overlay {
        padding-top: 120px;
    }
}