Anreise
Abreise
Erwachsene
Kinder


(function() { // CSS-Styles in einem String definieren const css = ` /* Buttons */ button, .btn-primary, .smb-btn { background-color: #2E5E4E !important; border-color: #2E5E4E !important; color: #fff !important; border-radius: 6px !important; padding: 10px 16px !important; font-weight: 600 !important; } button:hover, .btn-primary:hover, .smb-btn:hover { filter: brightness(1.05); } /* Links */ a, .smb-link { color: #2E5E4E !important; } /* Kalenderfarben */ .smb-calendar .selected, .smb-calendar .in-range { background: #C46A45 !important; color: #fff !important; } .smb-calendar .today { outline: 2px solid #2E5E4E !important; } /* Eingabefelder */ input, select, textarea { border-radius: 6px !important; border: 1px solid #2E5E4E !important; padding: 6px 10px !important; } `; // Style-Tag erzeugen und ins Dokument einfügen const style = document.createElement("style"); style.type = "text/css"; style.appendChild(document.createTextNode(css)); document.head.appendChild(style); })();