body {
    background: #f8f9fa;
    font-family: 'Inter', sans-serif;
}
h1, h2 {
    font-weight: 600;
}
.container-kalender {
    max-width: 960px;
    background: #fff;
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}
.service-card {
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #000000;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    min-height: 150px;
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    background-color: #dd7117;
    color: #ffffff;
}
.service-card.selected {
    border: 2px solid #fd7e14;
    box-shadow: 0 8px 20px rgba(253, 126, 20, 0.25);
}
.step {
    display: none;
    animation: fadeIn 0.3s ease-in-out;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.slot-btn {
    width: 100%;
    border-radius: 0.75rem;
    padding: 0.75rem;
    transition: all 0.2s ease;
    font-weight: 500;
}
.slot-btn:hover {
    background: #fd7e14;
    border-color: #fd7e14;
    color: #fff;
}
.btn {
    border-radius: 0.75rem;
    padding: 0.6rem 1.2rem;
}
.form-control {
    border-radius: 0.75rem;
}
.modal-content {
    border-radius: 1rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
/* Stepper */
.stepper-wrapper {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    position: relative;
}
.stepper-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 4px;
    background: #f0f0f0;
    z-index: 0;
}
.stepper-item {
    position: relative;
    z-index: 1;
    text-align: center;
    flex: 1;
}
.step-counter {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem auto;
    font-weight: 600;
}
.active .step-counter {
    background: #fd7e14;
    color: #fff;
}
.btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
}
.btn-primary:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
}
.btn-outline-primary {
    /* color: #ffffff; */
    border-color: #0d6efd;
}
.btn-outline-primary:hover {
    background-color: #fd7e14;
    border-color: #fd7e14;
    color: #fff;
}
/* Modern slot grouping */
#slots-list h4 {
    font-weight: 600;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
    color: #0d6efd;
}



@media (max-width: 992px) {
    header {
        margin-top: 65px
    }
}















/* Wir nutzen den ID-Selektor davor, um die Priorität zu erhöhen */
#service-container .service-card {
    transition: all 0.25s ease-in-out !important;
    border: 1px solid #dee2e6 !important; /* Standard Bootstrap Grau */
    cursor: pointer;
    border-radius: 12px !important;
}

/* Hover-Effekt: Karte hebt sich ab */
#service-container .service-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08) !important;
    border-color: #0d6efd !important; /* Dein Blau */
}

/* Wenn die Karte ausgewählt wurde (via jQuery .addClass('selected')) */
#service-container .service-card.selected {
    border: 2px solid #0d6efd !important;
    background-color: #f8fbff !important;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.15) !important;
}

/* Verstecke die hässlichen Standard-Footer-Linien falls nötig */
#service-container .card-footer {
    border-top: none !important;
    background: transparent !important;
}































/* Skeleton Loader Style */
.skeleton-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
}

.skeleton-placeholder {
    background: linear-gradient(90deg, #f2f2f2 25%, #e6e6e6 50%, #f2f2f2 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite ease-in-out;
    border-radius: 4px;
}

.skeleton-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
}

.skeleton-title {
    width: 70%;
    height: 14px;
    margin: 8px auto;
}

.skeleton-text {
    width: 40%;
    height: 10px;
    margin: 4px auto;
}

.skeleton-badge {
    width: 50%;
    height: 16px;
    border-radius: 50rem;
    margin: 0 auto;
}

@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}