.form-head{text-align:center;margin: 0 0 20px 0;}
.form-head h1{color:#000;font-weight:bold;}
.form-head span{color:#0066c3}

.progress {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin: 0 0 20px 0;
}

/* Wrapper für Kreis + Text */
.step-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center; /* sorgt für mittigen Text unter Kreis */
}

/* Kreis */
.step {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #ccc;
  color: #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

/* aktiv */
.step.active {
  background: #2196f3;
  border-color: #2196f3;
  color: white;
}

/* erledigt */
.step.done {
  background: #4caf50;
  border-color: #4caf50;
  color: white;
}

/* Linie */
.line {
  width: 60px;
  height: 2px;
  background: #ccc;
  margin: 20px 40px 0 40px; /* damit Linie mittig zu Kreisen sitzt */
}

/* Label unter Kreis */
.label {
  margin-top: 8px;
  font-size: 12px;
  color: #333;
  text-align: center;
}

h3{color:#000000 !important;}
.uebersicht{border:1px solid #cccccc;padding:20px;color:#000000;display: flex;
    flex-wrap: wrap;
    gap: 15px;}
.uebersicht-item{border-bottom:1px dotted #cccccc;flex: 0 0 auto;padding:5px;margin:5px;float:left;}
.termin-item{background:#98fb98;}
.eingabe{font-weight:600;}
.req{color:red;}
label{color:#000000;}
.label{color:#000000;}
.radio-item span, .checkbox-item span{font-weight:300;}
/* nur Text-Inputs + Select */
input[type="text"],
input[type="email"],
input[type="number"],
input[type="tel"],
select {
    height: 60px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    transition: 0.2s ease;
}

input:hover,
select:hover,
input:focus,
select:focus,
textarea:hover,
textarea:focus {
    border-color: #0066c3;
	box-shadow: 0 0 0 4px rgba(0,102,195,0.3);
}
input::placeholder {
    color: #363636 !important;
	font-style: normal !important;
	font-weight:300 !important;
    font-size: 14px;
	padding-left:10px;
    opacity: 1;
}
textarea::placeholder {
    color: #363636 !important;
}

.fahrzeug-formular {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
	background-color:#eeeeee;
	padding:20px;
}

.form-row {
    display: flex;
    gap: 15px;
}

#monthLabel{color:#000;}


.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.form-columns {
    display: flex;
    gap: 20px;
}

.form-left,
.form-right {
    flex: 1;
    background: #eee;
    padding: 15px;
    border-radius: 10px;
    box-sizing: border-box;
}

.form-row-4 .form-group {
    flex: 1 1 calc(25% - 15px);
}

.form-row-2 .form-group {
    flex: 1 1 calc(50% - 10px);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.full-width {
    width: 100%;
}

.fahrzeug-formular label {
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
}

.fahrzeug-formular input,
.fahrzeug-formular select,
.fahrzeug-formular textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    box-sizing: border-box;
}

.fahrzeug-formular textarea {
    min-height: 140px;
    resize: vertical;
}

.form-actions {
    display: flex;
    justify-content: flex-end;
}

.half-width {
    flex: 0 0 calc(50% - 10px);
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.radio-item {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.radio-item input[type="radio"] {
    width: auto;
    margin: 0;
}

.form-actions button {
    padding: 12px 28px;
    border: none;
    background: #000;
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
    transition: 0.2s ease;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    cursor: pointer;
}

.checkbox-item input[type="checkbox"] {
    flex: 0 0 auto;
    width: auto;
    margin: 0;
}

.checkbox-item span {
    flex: 1;
}

.form-actions button:hover {
    opacity: 0.9;
}



.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    width: 100%;
}

.btn-back {
    padding: 12px 24px !important;
    border: none !important;
	font-size:1.2em !important;
    background: #0066c3 !important;
    color: #fff !important;
    border-radius: 6px !important;
    cursor: pointer;
}

.btn-back {
    padding: 12px 24px !important;
    border: none !important;
    font-size: 1.2em !important;
    background: #0066c3 !important;
    color: #fff !important;
    border-radius: 6px !important;
    cursor: pointer;
}

.btn-next {
    padding: 12px 24px !important;
    border: none !important;
    font-size: 1.2em !important;
    background: #0066c3 !important;
    color: #fff !important;
    border-radius: 6px !important;
    cursor: pointer;
}

.btn-back:hover,
.btn-next:hover {
    opacity: 0.9 !important;
}

.btn-next:disabled {
    opacity: 0.5;
    cursor: not-allowed !important;
    pointer-events: none;
}


.form-act {
    display: flex;
    justify-content: flex-end;
    margin-top: 30px;
}

.form-calendar-wrapper {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.calendar-box,
.time-box {
    flex: 1;
    min-width: 0;
}

.calendar-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
	background:#ffffff;
	padding:10px;
	border: 1px solid #ccc;
}

.calendar {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
	width: 100%;
	background:#fff;
	padding:5px;
	border: 1px solid #ccc;
}

.calendar-weekday {
    font-weight: bold;
    text-align: center;
}

.calendar-day {
    text-align: center;
    padding: 10px 0;
    border: 1px solid #ddd;
    cursor: pointer;
	background: #fff;
	color:#000000;
}

.calendar-day.disabled {
    opacity: 0.3;
    pointer-events: none;
}

.calendar-day:hover {
    background: #0066c3;
	color:#fff;
}

.calendar-day.selected {
    background: #0066c3;
    color: #fff;
}

.slot-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

/* WICHTIG: Slot füllt Grid-Zelle komplett */
.slot {
    width: 100%;
    display: flex;
}

.slot {
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border: 1px solid #0066c3;
    border-radius: 8px;
	color:#0066c3;
    cursor: pointer;
    background: #fff;
    transition: 0.2s ease;
}

.slot:hover {
    background: rgba(0, 102, 195, 0.10);
}

.slot:has(input:checked) {
    background: #0066c3;
    color: #fff;
    border-color: #0066c3;
}

.slot-group > label {
    width: 100%;
}



/* Input darf nie Einfluss haben */
.slot input {
    display: none;
}

.slot.disabled {
    opacity: .4;
    cursor: not-allowed;
}

.slot.disabled span {
    text-decoration: line-through;
}

.form-footer-text{float:left;font-size:0.8em;}

/* Responsive */
@media (max-width: 992px) {
    .form-row-4 .form-group {
        flex: 1 1 calc(50% - 10px);
    }
}

@media (max-width: 768px) {
	.form-columns {
        flex-direction: column;
    }

    .form-row {
        flex-direction: column;
    }
	
    .form-row-4 .form-group,
    .form-row-2 .form-group {
        flex: 1 1 100%;
    }
	 .half-width {
        flex: 1 1 100%;
    }
	.form-calendar-wrapper {
        flex-direction: column;
    }

    .calendar-box {
        width: 100%;
    }

    .calendar {
        width: 100%;
    }

    .slot-group {
        display: grid !important;
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)) !important;
        gap: 10px;
		justify-content: center;
    }

    .slot-group > label {
        width: auto !important;
    }

    .slot {
        justify-content: center;
    }
		
}