.skills-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.languages-container, .other-skills-container {
    flex: 1 1 300px;
    width: 50%;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.languages-container h2, .other-skills-container h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #333;
}

.language-skill {
    margin-bottom: 1rem;
}

.language-info {
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.language-bar-container {
    width: 100%;
    height: 10px;
    border-radius: 5px;
    overflow: hidden;
}

.language-bar {
    height: 100%;
    background: linear-gradient(to right, #333, #111);
    transition: width 0.3s ease-in-out;
}

/* Grid-Layout für gebogene Balkendiagramme */
.other-skills-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    justify-items: center;
    align-items: center;
    padding: 1rem;
}

/* Gebogene Balkendiagramme */
.circular-bar {
    position: relative;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: conic-gradient(
        #333 calc(var(--level) * 1%), 
        #ddd calc(var(--level) * 1%)
    );
    margin: 1rem auto;
}

.circular-bar::before {
    content: "";
    position: absolute;
    top: 10%;
    left: 10%;
    width: 80%;
    height: 80%;
    background: #fff;
    border-radius: 50%;
    z-index: 1;
}

.circular-bar .circular-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
    z-index: 2;
}

.skills-title {
    position: relative; /* Aus dem normalen Grid-Layout entfernen */
    margin-bottom: 0.1rem; /* Abstand nach unten */
    text-align: center; /* Zentriere den Titel */
    grid-column: 1 / -1; /* Falls notwendig, breitet sich über alle Spalten aus */
}