.widget-container {
	background: white;
	border-radius: 10px;
	overflow: hidden;
	max-width: 1200px;
	width: 100%;
	min-height: 600px;
	position: relative;
	margin: 0px auto;
}

.step-indicator {
   
	background: var(--theme-color);
	padding: 20px;
	border-bottom: 1px solid #e2e8f0;
	display: flex;
	justify-content: center;
	gap: 20px;
 
  
}

.close-widget-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 28px;
    font-weight: bold;
    color: #6b7280; /* Ein neutrales Grau */
    cursor: pointer;
    z-index: 10;
    padding: 0;
    line-height: 1;
    transition: color 0.2s ease;
}

.close-widget-btn:hover {
    color: #1e293b; /* Dunklere Farbe beim Hover */
}

.step {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-color);
    font-weight: 500;
}

.step.active {
	color: #fff;
}

.step-number {
	width: 32px;
	height: 32px;
    min-width: 32px;
	border-radius: 50%;
	background: var(--gray-color);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	transition: all 0.3s ease;
	color: #fff;
}

.step.active .step-number {
	background: #fff;
	color: var(--title-color);
}

.content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    min-height: 500px;
}

.column {
    padding: 30px;
    border-right: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
}

.column:last-child {
    border-right: none;
}

.column h3 {
    color: #1e293b;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
}

.info-section {
    background: #fff;
    color: #000;
}

.info-section h3 {
    color: var(--title-color);
}

.info-item {
	margin-bottom: 0;
	display: flex;
	align-items: center;
	gap: 10px;
}

.info-icon {
	width: auto;
	height: auto;
	background: rgba(255,255,255,0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	color: var(--theme-color);
}

.calendar-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.calendar {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
}

.calendar-header {
    background: #f8fafc;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e2e8f0;
}

.calendar-nav {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 6px;
    transition: background 0.2s;
}

.calendar-nav:hover {
    background: #e2e8f0;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #f1f5f9;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 14px;
}

.calendar-day:hover {
    background: #f1f5f9;
}

.calendar-day.selected {
    background: var(--theme-color);
    color: white;
}

.calendar-day.disabled {
    color: #cbd5e1;
    cursor: not-allowed;
}

.weekday-header {
    background: #f8fafc;
    font-weight: 600;
    font-size: 12px;
    color: #64748b;
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    max-height: 300px;
    overflow-y: auto;
}

.time-slot {
    padding: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 14px;
    font-weight: 500;
}

.time-slot:hover {
    border-color: var(--theme-color);
    background: #f0f9ff;
}

.time-slot.selected {
    background: var(--theme-color);
    color: white;
    border-color: var(--theme-color);
}

.form-container {
    grid-column: span 3;
    padding: 10px;
    display: none;
}

.form-container.active {
    display: block;
}

.booking-form {
    max-width: 1000px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 10px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #374151;
    font-size: 14px;
}
.form-input, .form-textarea, .form-select {
	width: 100%;
	padding: 6px 8px;
	border: 1px solid #d1d5db;
	border-radius: 6px;
	font-size: 16px;
	transition: border-color 0.2s;
	height: 56px;
}

#contactModal .form-input, 
#contactModal .form-textarea, 
#contactModal .form-select {
    height: 40px;  
    font-size: 16px !important; 
}


.form-input:focus, .form-textarea:focus, .form-select:focus {
    outline: none;
    border-color: var(--theme-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.btn {
    background: var(--theme-color);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn:hover {
    background: #2563eb;
    transform: translateY(-1px);
}

.btn:disabled {
    background: #9ca3af;
    cursor: not-allowed;
    transform: none;
}

.btn-secondary {
    background: #6b7280;
    margin-right: 10px;
}

.btn-secondary:hover {
    background: #4b5563;
}

.selected-info {
	background: rgba(0,0,0,0.02);
	border: 1px solid rgba(0,0,0,0.1);
	border-radius: 8px;
	padding: 10px;
	margin-bottom: 10px;
}
.hidden {
    display: none !important;
}

div#step2-content.form-container.active div.booking-form h2 {
	font-size: 20px !important;
	margin-top: 20px !important;
}

.button-termin {
	border-radius: 5px;
	font-size: 14px;
	padding: 10px 15px;
}

 
#selected-url, #selected-paket {
	display: none;
	margin-bottom: 15px;
	padding: 10px;
	background: rgba(0,0,0,0.02);
}

.column-header-mobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 20px;
}

.column-header-mobile h3 {
    margin-bottom: 0; /* Entfernt den Standard-Abstand vom h3 */
}

/* Den "Zurück"-Button standardmäßig ausblenden */
.btn-back-to-date {
    display: none;
}

.booking-form h2{
    margin-bottom: 30px;
  text-align: center;
  color: #1e293b;
}

@media (max-width: 768px) {

     .btn-back-to-date {
        display: inline-flex; /* Zeigt den Button nur auf Mobilgeräten an */
        background: none;
        border: 1px solid #e2e8f0;
        color: #374151;
        padding: 5px 10px;
        font-size: 14px;
        font-weight: 500;
        border-radius: 6px;
        cursor: pointer;
    }
    .btn-back-to-date:hover {
        background: #f1f5f9;
    }
    .content {
        grid-template-columns: 1fr;
    }

    .step {
	color: var(--gray-color);
	font-weight: 500;
	font-size: 13px;
	line-height: 13px;}
       
    .time-column {
    display: none; /* Blendet die Uhrzeit-Spalte initial aus */}

    .form-container {
    display: none; /* Standardmäßig ausgeblendet */
}

.form-container.active {
    display: block; /* Wird durch JS eingeblendet */
}


.info-section {
	display: none;
}

    .column {
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
    }

    .form-row {
        grid-template-columns: 1fr;
    }


    .widget-container {
	 
	border-radius: 0px;
 
}

#selected-url, #selected-paket {
	display: none;
	margin-bottom: 10px;
	padding: 5px;
 
}

.selected-info {
	background: rgba(0,0,0,0.02);
	border: 1px solid rgba(0,0,0,0.1);
	border-radius: 0;
	padding: 5px;
	margin-bottom: 10px;
	font-size: 13px;
	line-height: 1.5;
}

.form-label {
	display: block;
	margin-bottom: 5px;
	font-weight: 500;
	color: #374151;
	font-size: 12px;
	margin: 0;
}

.form-group {
	margin-bottom: 0;
}

#contactModal .form-input, #contactModal .form-textarea, #contactModal .form-select {
	height: 30px;
	font-size: 14px !important;
}

.form-input, .form-textarea, .form-select {
	width: 100%;
	padding: 6px 8px;
	border: 1px solid #d1d5db;
	border-radius: 0;
	
}

.form-row {
	display: grid;
	grid-template-columns: none;
	gap: 5px;
}

#booking-form .form-label {
 
}
#booking-form .form-input {
  
}
#booking-form .form-textarea {
 min-height: 70px;

}

.booking-form h2{
  margin-bottom: 15px;
  text-align: center;
  color: #1e293b;
}
}
