/* Oprava výšky předvolby telefonu */

/* Zajistit stejnou výšku pro předvolbu a input telefonu */
.telefon-wrapper {
    display: flex;
    align-items: stretch !important; /* Místo center použít stretch */
    gap: 0;
}

.telefon-predvolba-select select {
    height: 100% !important;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px 0 0 5px;
    border-right: none;
    font-size: inherit;
}

.telefon-wrapper input[type="tel"] {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 0 5px 5px 0;
    border-left: 1px solid #e0e0e0;
    flex: 1;
    font-size: inherit;
}

/* Zajistit stejnou výšku pomocí explicitního nastavení */
.telefon-predvolba-select select,
.telefon-wrapper input[type="tel"] {
    height: 42px !important; /* Explicitní výška */
    box-sizing: border-box;
}

/* Odstranit margin mezi elementy */
.telefon-predvolba-select {
    margin-right: 0 !important;
}

.telefon-wrapper input[type="tel"] {
    margin-left: 0 !important;
}