.table-thumb {
  width: 60px;
  height: 60px;
  object-fit: cover;
}

    .status-dot {
      height: 10px;
      width: 10px;
      border-radius: 50%;
      display: inline-block;
      margin-right: 5px;
    }
    .status-green { background-color: green; }
    .status-yellow { background-color: yellow; }
    .status-red { background-color: red; }
    .status-gray { background-color: gray; }

#imageModal .modal-body p {
  margin-bottom: 0rem;
}

.wall-thumb {
  width: var(--img-size, 180px);
  height: var(--img-size, 180px);
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
}
.image-wall {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}


.thumb-with-label {
  position: relative;
  display: inline-block;
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 4px 6px;
  font-size: 0.85rem;
  text-align: left;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
    display: flex;
  align-items: center;
  justify-content: flex-start; /* oder 'space-between' für Abstand */
  gap: 0.4rem;
}

#modalImage {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: contain;
  display: block;
  margin-left: auto;
  margin-right: auto;
}


/* Helle, moderne Navbar */
.navbar {
  background-color: #f8f9fa !important;
  border: 1px solid #ddd;
  border-radius: 0.5rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.navbar .navbar-brand {
  font-weight: bold;
  color: #007bff !important;
}

.navbar .nav-link {
  color: #333 !important;
  font-weight: 500;
}

.navbar .nav-link:hover {
  color: #007bff !important;
  text-decoration: underline;
}

.navbar .btn {
  font-size: 0.9rem;
}

.navbar-text {
  color: #555;
}

.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='gray' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
