.hotel-name-view {
    font-size: 16px;
    color: #444;
    margin-top: 6px;
}

.hotel-flag {
  width: 18px;
  height: 12px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 0 1px rgba(0,0,0,0.4);
}

.xhotel-flag {
  width: 20px;
  height: auto;
  border-radius: 2px;
  box-shadow: 0 0 1px rgba(0,0,0,0.4);
}
/* ------------------------------------------------

------------------------------------------------ */

.detail-hotel-image {
  width: 90px;
  height: 48px;
  object-fit: cover;
  border-radius: 6px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: zoom-in;
}

.detail-hotel-image:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.25);
}

@media (hover: none) {
  .detail-hotel-image:hover {
    transform: none;
    box-shadow: none;
  }
}
.detail-hotel-placeholder {
  width: 90px;
  height: 48px;
  border-radius: 6px;
  background: #f1f1f1;
  color: #666;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 22px;
  user-select: none;
}



/* ---------- LIGHTBOX ---------- */
.hotel-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.hotel-lightbox img {
  max-width: 92vw;
  max-height: 92vh;
  border-radius: 10px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

.hotel-lightbox-close {
  position: absolute;
  top: 16px;
  right: 18px;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  user-select: none;
}
.hotel-ship-placeholder {
  cursor: default;
}


/* ------------------------------------------------
   HOTEL SEARCH PANEL
------------------------------------------------ */

.hotel-search-panel {
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #fff;
    margin-top: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    overflow: hidden;
    animation: fadeInSearch 0.15s ease;
}

.hotel-search-header {
    padding: 8px;
    border-bottom: 1px solid #eee;
    background: #fafafa;
}

.hotel-search-input {
    width: 100%;
    padding: 6px 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 13px;
    outline: none;
}

.hotel-search-input:focus {
    border-color: #1976d2;
}

/* Ergebnisliste */

.hotel-search-results {
    max-height: 220px;
    overflow-y: auto;
}

/* Einzelnes Ergebnis */

.hotel-search-item {
    padding: 8px 10px;
    cursor: pointer;
    transition: background 0.12s ease;
    border-bottom: 1px solid #f1f1f1;
}

.hotel-search-item:last-child {
    border-bottom: none;
}

.hotel-search-item:hover {
    background: #f5f9ff;
}

/* Titel */

.hotel-search-title {
    font-size: 13px;
    font-weight: 600;
    color: #222;
}

/* Subtitle (Ort etc.) */

.hotel-search-subtitle {
    font-size: 11px;
    color: #666;
    margin-top: 2px;
}

/* No results / Error */

.hotel-search-empty,
.hotel-search-error {
    padding: 10px;
    font-size: 12px;
    color: #777;
}

/* kleine Animation */

@keyframes fadeInSearch {
    from { opacity: 0; transform: translateY(-4px); }
    to   { opacity: 1; transform: translateY(0); }
}





/* Edit Mode – gesteuert über .mode-time */
.event-detail-block.mode-time .ship-stop-header .dt-edit {
    display: inline-flex;
}

.event-detail-block.mode-time .ship-stop-header .dt-view {
    display: none;
}


/* Inputs wenn Zeitbearbeitung aktiv */
.event-detail-block.mode-time .dt-input {
    background: var(--edit-blue-bg);
    color: #ffffff;
    border-color: var(--edit-blue-border);
}

/* Kalender-Icon sichtbar auf dunklem Hintergrund */
.event-detail-block.mode-time .dt-input::-webkit-calendar-picker-indicator {
    filter: invert(1);
}

.event-detail-block.mode-time .detail-datetime .dt-input {
    background: var(--edit-blue-bg);
    color: #ffffff;
    border-color: var(--edit-blue-bg);
}






.hotel-search-add {
    margin-top:8px;
    padding:6px;
    cursor:pointer;
    font-weight:bold;
    color:#1976d2;
}

.hotel-search-add:hover {
    text-decoration:underline;
}

.hotel-new-form {
    margin-top:10px;
    padding:10px;
    border:1px solid #ddd;
    border-radius:6px;
    background:#fafafa;
}

.hotel-new-form input {
    display:block;
    width:100%;
    margin-bottom:6px;
    padding:6px;
}

.hotel-new-actions {
    display:flex;
    gap:8px;
}

