/* Direktbuchung butonlarını ve metinlerini suchen ile değiştir */
button:contains("Direktbuchung"),
input[value*="Direktbuchung"],
a:contains("Direktbuchung"),
span:contains("Direktbuchung"),
div:contains("Direktbuchung"),
label:contains("Direktbuchung") {
    visibility: hidden !important;
    position: relative !important;
}

button:contains("Direktbuchung")::after,
input[value*="Direktbuchung"]::after,
a:contains("Direktbuchung")::after,
span:contains("Direktbuchung")::after,
div:contains("Direktbuchung")::after,
label:contains("Direktbuchung")::after {
    content: "Suchen" !important;
    visibility: visible !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: inherit !important;
    border: inherit !important;
    color: inherit !important;
    font: inherit !important;
}

/* Input butonları için value değişikliği */
input[value="Direktbuchung"] {
    visibility: hidden !important;
    position: relative !important;
}

input[value="Direktbuchung"]::before {
    content: "Suchen" !important;
    visibility: visible !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: inherit !important;
    border: inherit !important;
    color: inherit !important;
    font: inherit !important;
}