body {
    display: flex;
    overflow-x: auto;
    padding: 40px;
    gap: 25px;
    background: #f8f9fa;
    font-family: 'Segoe UI', sans-serif;
}
.horizontal-wrapper {
    display: flex;
    flex-wrap: wrap; 
    gap: 20px;
    padding-bottom: 20px;
}

.card {
    flex: 0 0 280px; 
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    border: 1px solid #e0e0e0;
    text-align: center;
}

.profile-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid #007bff;
}

.id {
    font-size: 0.8rem;
    color: #888;
    margin: 5px 0;
}

.contact {
    font-size: 0.9rem;
    margin: 15px 0;
    padding: 10px;
    background: #f1f3f5;
    border-radius: 8px;
}

.skill-section {
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px solid #eee;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.skill-check {
    font-size: 0.9rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 5px;
}

.stars {
    color: #dee2e6; /* Graue Sterne */
    font-size: 1.4rem;
}

.stars .star.active {
    color: #ffc107; /* Goldene Sterne */
}
