.kfz-status-badge {
  position: absolute;
  background: red;
  color: #fff;
  padding: 5px 10px;
  border-radius: 4px;
  font-weight: bold;
  z-index: 5;
}

.kfz-card.kfz-locked {
  opacity: 0.8;
  border-color: #555;
}

.kfz-card h3, .kfz-modal-inner h2, .kfz-modal-inner form input {
  color: #fff !important;
}

.kfz-card {
  transition: transform 0.2s;
}

.kfz-card:hover {
  transform: translateY(-5px);
  border-color: #0084ff;
}

.kfz-spec-item:last-of-type {
  border-bottom: none;
}

.kfz-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

.kfz-filter-wrap {
  background: #1e1e1e;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 30px;
  border: 1px solid #333;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 15px;
}

.kfz-filter-wrap select {
  max-width: 10em;
  background: #333;
  color: #fff;
  border: 1px solid #444;
  padding: 10px;
  border-radius: 6px;
	padding:5px;
}

.kfz-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
  font-family: sans-serif;
}

.kfz-card {
  background: #1e1e1e;
  border: 1px solid #333;
  width: 350px;
  padding: 20px;
  border-radius: 12px;
  color: #fff;
}

.kfz-card img.main-thumb {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  cursor: zoom-in;
  margin-bottom: 15px;
  border: 1px solid #444;
}

.kfz-price-tag {
  font-size: 1.6em;
  font-weight: bold;
  color: #2ecc71;
  margin-bottom: 15px;
  border-bottom: 1px solid #333;
  padding-bottom: 10px;
}

.kfz-spec-item {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #2a2a2a;
  font-size: 0.95em;
}

.kfz-spec-label {
  margin-right: 5px;
  color: #999;
}

.kfz-desc-box {
  background: #2a2a2a;
  padding: 12px;
  border-radius: 6px;
  margin: 15px 0;
  font-size: 0.9em;
  line-height: 1.4;
  color: #ddd;
  max-height: 200px;
  overflow-y: auto;
}

.park-action-btn, .form-park-v3 .park-action-btn {
  background: #23c415;
  color: #fff;
  border: none;
  padding: 14px;
  width: 100%;
  cursor: pointer;
  border-radius: 6px;
  font-weight: bold;
  font-size: 1.1em;
}

.park-action-btn[disabled=""]{
  background: red !important;
}

/* Modale Styles */
.kfz-overlay {
  display: none;
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
}

.kfz-modal-inner {
  background: #222;
  width: 90%;
  max-width: 700px;
  padding: 30px;
  border-radius: 15px;
  position: relative;
  color: #fff;
}

#slider-stage img {
  max-width: 100%;
  max-height: 450px;
  border-radius: 8px;
}

.slider-nav {
  display: flex;
  gap: 10px;
  margin-top: 15px;
  overflow-x: auto;
  padding-bottom: 10px;
}

.slider-nav img {
  width: 70px;
  height: 50px;
  object-fit: cover;
  cursor: pointer;
  border-radius: 4px;
  opacity: 0.5;
}

.slider-nav img.active {
  opacity: 1;
  border: 2px solid #0084ff;
}

.kfz-form-v3 input {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  background: #333;
  border: 1px solid #444;
  color: #fff;
}

.close-x {
  position: absolute;
  top: 15px;
  right: 20px;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
}