body {
    font-size: 16px;
}

/* Service Sidebar Styling */
.service-sidebar {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: static;
}

.sidebar-section {
    margin-bottom: 2rem;
}

.sidebar-section:last-child {
    margin-bottom: 0;
}

.sidebar-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #007bff;
}

/* Service List Styling - Vertical Stack */
.service-list {
    display: block;
    width: 100%;
}

.service-list .service-item {
    display: block;
    width: 100%;
    margin-bottom: 0.25rem;
}

.service-list .service-item:last-child {
    margin-bottom: 0;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    text-decoration: none;
    color: #495057;
    background: #ffffff;
    border: 1px solid #e9ecef;
    transition: all 0.2s ease;
    font-weight: 500;
    font-size: 0.9rem;
}

.service-item:hover {
    background: #e3f2fd;
    color: #007bff;
    text-decoration: none;
    transform: translateX(4px);
    border-color: #007bff;
}

.service-item.active {
    background: #007bff;
    color: white;
    border-color: #007bff;
}

.service-item.active:hover {
    background: #0056b3;
    transform: translateX(2px);
}

.service-name {
    flex: 1;
    font-size: 0.9rem;
}

.category-name {
    flex: 1;
    font-size: 0.9rem;
}

/* Responsive Anpassungen */
@media (max-width: 991px) {
    .service-sidebar {
        margin-bottom: 2rem;
        position: static;
    }

    .sidebar-title {
        font-size: 1rem;
    }
}

@media (max-width: 767px) {
    .service-sidebar {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }

    .service-item {
        padding: 0.5rem 0.75rem;
    }
}