/* This CSS file will be loaded at last. Any CSS customization should be placed here */

/* ========== Allgemeines Reset & Basis ========== */
* {
  box-sizing: border-box;
}

body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  font-size: 16px;
  color: #222;
  background-color: #f9f9f9;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

/* ========== Karten & Container ========== */
.vikrentcar-container,
.vikrentcar-car-box,
.vikrentcar-box,
.vikrentcar-vehicle {
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  border: none;
  margin-bottom: 1.5rem;
}

/* ========== Buttons ========== */
button,
input[type="submit"],
.vikrentcar-btn,
.vikrentcar-button {
  background-color: #1f7cff;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.75rem 1.25rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s;
}

button:hover,
input[type="submit"]:hover,
.vikrentcar-btn:hover {
  background-color: #145ddc;
}

/* ========== Formularfelder ========== */
input[type="text"],
input[type="email"],
input[type="number"],
select,
textarea {
  width: 100%;
  padding: 0.65rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #fff;
  transition: border-color 0.2s;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #1f7cff;
  outline: none;
}

/* ========== Tabellen (z.B. Preisübersichten) ========== */
.vikrentcar-table,
.vikrentcar-table tr,
.vikrentcar-table td,
.vikrentcar-table th {
  border: none;
  border-collapse: collapse;
  padding: 0.75rem;
}

.vikrentcar-table th {
  background-color: #f0f4f8;
  font-weight: 600;
  text-align: left;
}

.vikrentcar-table tr:nth-child(even) {
  background-color: #fafafa;
}

/* ========== Icons, Labels, Sonstiges ========== */
.vikrentcar-label,
label {
  font-weight: 500;
  margin-bottom: 0.25rem;
  display: block;
  color: #333;
}

/* ========== Übergänge & kleine Verfeinerungen ========== */
a {
  color: #1f7cff;
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: #145ddc;
}

img {
  border-radius: 12px;
  max-width: 100%;
  height: auto;
}