#dp-compact-forms {
    margin-top: 15px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
    align-items: flex-start; /* Důležité: Boxy nebudou nuceně stejně vysoké/široké */
}

.wt-mini-box {
    background: #f4f8fc;
    border: 1px solid #d0e1f0;
    padding: 10px 12px;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

/* LEVÝ BOX: Natvrdo omezená šířka */
.wt-fix-small {
    flex: 0 0 auto !important;
    width: 210px !important; /* Fixní šířka, aby nebyl jako ten druhý */
}

/* PRAVÝ BOX: Širší pro dotaz */
.wt-fix-medium {
    flex: 0 0 auto !important;
    width: 300px !important;
}

.wt-mini-header {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #0a2a43;
}

.wt-row {
    display: flex;
    gap: 6px;
    margin-bottom: 6px;
}

.wt-mini-input {
    flex: 1;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 6px 8px;
    font-size: 13px;
    height: 34px;
    font-family: inherit;
    box-sizing: border-box;
}

/* Šířka inputu pro telefon v malém boxu */
.wt-phone-width {
    width: 120px !important;
    flex: none !important;
}

textarea.wt-mini-input.wt-resizable {
    height: 45px;
    min-height: 34px;
    max-height: 120px;
    resize: vertical;
}

.wt-mini-btn {
    height: 34px;
    background: #2aa0d7;
    color: #fff;
    border: 0;
    border-radius: 4px;
    padding: 0 12px;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
}

.wt-mini-consent {
    font-size: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
}

.wt-mini-consent input { margin: 0; width: 14px; height: 14px; }

.wt-msg { font-size: 10px; margin-top: 4px; font-weight: bold; }

@media (max-width: 600px) {
    #dp-compact-forms { flex-direction: column; }
    .wt-fix-small, .wt-fix-medium { width: 100% !important; max-width: none !important; }
}