.ev-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.ev-item {
  flex: 1 1 220px;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
  background: #fff;
  transition: transform .2s;
}
.ev-item:hover { transform: translateY(-3px); }

.ev-thumb { width: 100%; border-radius: 6px; height: auto; }

.ev-item .button {
  display: inline-block;
  margin-top: 10px;
  background: #2271b1;
  color: #fff;
  padding: 6px 12px;
  border-radius: 4px;
  text-decoration: none;
}
.ev-item .button:hover { background: #135e96; }

#ev-product-calendar {
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fff;
  padding: 8px;
}

.ev-form {
  display: grid;
  gap: 10px;
  margin-top: 15px;
}

.ev-form__row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ev-form input,
.ev-form select {
  padding: 8px;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  font-size: 14px;
}

.ev-button {
  background: #2271b1;
  color: #fff;
  border: none;
  padding: 10px 14px;
  border-radius: 4px;
  cursor: pointer;
}

.ev-button:hover { background: #135e96; }

.ev-form__note {
  margin: 0;
  color: #374151;
  font-weight: 600;
}

.ev-calendar {
  margin-bottom: 20px;
}

.ev-single {
  max-width: 1100px;
  margin: 30px auto;
  padding: 0 15px;
}

.ev-single__hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  align-items: start;
  margin-bottom: 20px;
}

.ev-single__image img,
.ev-single__extra img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.ev-single__meta p {
  margin: 4px 0;
}

.ev-single__content {
  margin-top: 10px;
}

.ev-single__booking {
  margin-top: 30px;
}

.ev-account-box {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  margin-bottom: 20px;
}

.ev-table-scroll {
  overflow-x: auto;
}

.ev-table {
  width: 100%;
  border-collapse: collapse;
}

.ev-table th,
.ev-table td {
  border-bottom: 1px solid #e5e7eb;
  padding: 10px;
  text-align: left;
}

.ev-table th {
  background: #f8fafc;
  font-weight: 600;
}

.ev-badge {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 12px;
  background: #e5e7eb;
  color: #111827;
}

.ev-badge--anfrage { background: #fee2e2; color: #991b1b; }
.ev-badge--bestätigt,
.ev-badge--bestatigt { background: #fef3c7; color: #92400e; }
.ev-badge--bezahlt { background: #dcfce7; color: #166534; }
.ev-badge--abgeschlossen { background: #e0e7ff; color: #312e81; }
.ev-badge--offen { background: #f3f4f6; color: #1f2937; }

.ev-address-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.ev-address-form input {
  width: 100%;
}

.ev-flex {
  display: flex;
  gap: 12px;
}
