body {
  background-color: #13181f;
}

.navbar {
  background-color: #343a40;
}

.nav-link {
  color: #e0e0e0;
}

.navbar-brand {
  color: #e0e0e0;
}

.card {
  background-color: #343a40;
  color: #e0e0e0;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.card:hover {
  box-shadow: 0 0 15px #6e29b9, 0 0 30px #6e29b9;
  transform: translateY(-3px); /* optional, kleine „Lift“-Animation */
}

#cards_container {
  margin-top: 30px;
}

#indexcontainer {
  background-color: #343a40;
  max-width: 1000px;
  width: 100%;
  color: #e0e0e0;
}

#newcarcontainer {
  max-width: 1000px;
  width: 100%;
  background-color: #343a40;
  color: #e0e0e0;
}

.faster-one-regular {
  font-family: "Faster One", system-ui;
  font-weight: 400;
  font-style: normal;
}

.anton-regular {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.bg-brown {
  background-color: #8b4513;
  color: #fff;
}
.bg-purple {
  background-color: #800080;
  color: #fff;
}
.bg-pink {
  background-color: #ff69b4;
  color: #fff;
}

#editcontainer {
  max-width: 1000px;
  color: #e0e0e0;
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  width: 100%;
}

#editheading {
  text-align: center;
  margin-bottom: 25px;
  color: #333;
  font-weight: 600;
}

#labeledit {
  display: block;
  text-align: start;
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 6px;
}

.editdesign {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 0.95rem;
  color: #333;
  background: #f9f9f9;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.editdesign:focus {
  border-color: #8e2de2;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(142, 45, 226, 0.1);
  outline: none;
}

.updatebutton {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 25px;
  background: linear-gradient(135deg, #00c853, #009624);
  color: white;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.updatebutton:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(142, 45, 226, 0.4);
}

.delbutton {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 25px;
  background: linear-gradient(135deg, #ff1744, #d50000);
  color: white;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.delbutton:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(142, 45, 226, 0.4);
}

.cancelbutton {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 25px;
  background: linear-gradient(135deg, #9e9e9e, #616161);
  color: white;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cancelbutton:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(142, 45, 226, 0.4);
}

.banner {
  overflow: hidden; /* wichtig, damit das Hintergrundbild nicht rausläuft */
}

.banner-bg {
  background-image: url('img/gta.jpg'); /* Pfad zu deinem Bild */
  background-size: cover;
  background-position: center;
  filter: blur(8px); /* hier die Stärke des Verschwommeneffekts */
  z-index: 0;
}

/* Inhalt über dem Overlay */
.banner > .position-relative {
  z-index: 1;
}