

.custom-input {
    height: 50px; /* Beispielhöhe */
    font-size: 16px; /* Schriftgröße */
    width: 100%; /* Volle Breite */
}

#search-suggestions {
    border: 1px solid #ddd;
    max-height: 400px;
    overflow-y: auto;
    background-color: #fff !important;
    position: absolute;
    font-size: 0.8em;
    width: calc(100% - 20px); /* Passt zur Breite des Suchfelds */
    z-index: 1000;
}

#search-suggestions li {
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid #ddd;
}

#search-suggestions li:hover {
    background-color: #f0f0f0;
}

.login-form {
    position: relative;
    background: #fff;
    padding: 0;
    margin: 200px auto 0;
    width: 400px;
}

.form-wrapper {
    padding: 30px;
}

.field-wrapper {
    position: relative;
    margin-bottom: 10px;
}

.field-wrapper label {
    position: absolute;
    top: 13px;
    left: 13px;
    color: rgba(0, 0, 0, .3);
}

.field-wrapper input {
    padding: 9px 6px 9px 40px;
    width: 100%;
    font-size: 14px;
    color: #555;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    outline: none;
    transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

.form-actions {
    border-top: 1px solid #e4e4e4;
    background-color: #f7f7f7;
    padding: 15px 30px;
    text-align: right;
}




.login-form .btn {
    padding: 6px 12px;
    font-size: 14px;
    color: #fff;
    background: #428bca;
    border: 1px solid #357ebd;
    border-radius: 4px;
}

/* Eule-Styling */
#owl-login {
    width: 116px;
    height: 92px;
    background: url('/style/img/face.png');
    position: absolute;
    top: -82px;
    left: 50%;
    margin-left: -58px;
    pointer-events: none; z-index: 2;
}

#owl-login .eyes {
    width: 100%;
    height: 100%;
    background: url('/style/img/eyes.png');
    opacity: 0;
    transition: 0.1s ease-out 0s;
}

#owl-login .arm-up-right {
    width: 51px;
    height: 41px;
    position: absolute;
    bottom: 11px;
    right: 5px;
    transform: translateX(57px) scale(.8);
    transform-origin: 0 40px;
    transition: background-position 0.3s ease-in-out, transform 0.3s ease-in-out, opacity 0.3s linear;
    background: url('/style/img/arm-up-right.png') no-repeat 0 25px;
    opacity: 0;
}

#owl-login .arm-up-left {
    width: 52px;
    height: 41px;
    position: absolute;
    bottom: 11px;
    left: -3px;
    transform: translateX(-34px) scale(.8);
    transform-origin: 0 40px;
    transition: background-position 0.3s ease-in-out, transform 0.3s ease-in-out, opacity 0.3s linear;
    background: url('/style/img/arm-up-left.png') no-repeat 0 25px;
    opacity: 0;
}

#owl-login .arm-down-left {
    width: 43px;
    height: 25px;
    background: url('/style/img/arm-down-left.png');
    position: absolute;
    bottom: 2px;
    left: -34px;
    transition: 0.3s ease-out;
}

#owl-login .arm-down-right {
    width: 43px;
    height: 26px;
    background: url('/style/img/arm-down-right.png');
    position: absolute;
    bottom: 1px;
    right: -40px;
    transition: all 0.3s ease-in-out;
}

#owl-login.password .arm-up-left,
#owl-login.password .arm-up-right {
    opacity: 1;
    transform: scale(1);
    background-position: 0 0;
}

#owl-login.password .arm-down-left {
    opacity: 0;
    transform: translateX(10px) scale(0) translateY(-10px);
}

#owl-login.password .arm-down-right {
    opacity: 0;
    transform: translateX(12px) scale(0) translateY(-8px);
}

.card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.suggestion-box {
    position: absolute;
    background-color: white;
    border: 1px solid #ccc;
    max-height: 150px;
    overflow-y: auto;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    z-index: 1000;
}

.suggestion-item {
    padding: 8px 12px;
    cursor: pointer;
}

.suggestion-item:hover {
    background-color: #f0f0f0;
}


.garden-pin {
  position: relative;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font: 700 9px/1 "Segoe UI", Arial, sans-serif;
  border: 1px solid #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
  text-align: center;
  line-height: 20px; /* sichert exakte vertikale Zentrierung */
  padding: 0;
}

.garden-pin.green { background: #2e7d32; } /* grün (Begehung ≤14 Tage) */
.garden-pin.red   { background: #c62828; } /* rot  (keine/älter 14 Tage) */
.garden-pin span  {
  pointer-events: none;
  display: inline-block;
  transform: translateY(-1px); /* minimal optisch mittig */
}


.dropdown-menu-left {
  right: 0 !important;
  left: auto !important;
}

.icon-dot { margin-left:.4rem; vertical-align:middle; }