.aircraft-achievement-section {
    max-width: 1280px;
    height: auto;
    margin: 0 auto;
    margin-top: 42px;
    font-family: Verdana;
    background-color: #ffffff;
    color: #ffffff;
}

.aircraft-achievement-headline {
    font-size: 16px;
    /*font-weight: bold;*/
    padding: 0 !important;
}

.aircraft-achievement-container {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    margin-top: 42px;
    background-color: #112839;
    border-radius: 10px;
    padding: 5px 10px 10px 10px;
    margin-bottom: 5px;
}

.type-grid {
    background-color: #112839;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
}

.type-column {
    background-color: #112839;
    padding: 5px;
    border: 1px solid #ffffff;
    border-radius: 10px;
}
.type-column ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.type-item {
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2px 0; /* Optional: Platzierung optimieren */
    transition: background-color 0.075s ease-in-out; /* Sanfter Farbwechsel */
}
.type-item:hover {
    background-color: #0a1f2b;
}
.type-text {
    flex: 1;
    text-align: left;
}

.type-text a {
    color: #ffffff;
    text-decoration: none;
}

.type-text a:visited {
    color: #ffffff;
}

.dot-container {
    width: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #00ff00;
    border-radius: 50%;
    margin-left: 5px;
}

.group-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
    background-color: #112839;
}

.group-column {
    display: flex;
    flex-direction: column;
    background-color: #112839;
    padding: 5px;
    border: 1px solid #ffffff;
    border-radius: 10px;
    color: #ffffff;
    font-size: 12px;
}

.group-title {
    font-weight: normal;
    margin-top: 5px;
    margin-bottom: 8px;
}

.type-group-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
    margin-top: 10px;
}

.type-list {
    list-style-type: none;
    padding: 10px 5px 10px 5px;
    margin: 0;
    background-color: #1c3b57;
    border: 0 solid;
    border-color: #ffffff;
    border-radius: 10px;
    text-align: center;
    font-size: 12px;
}

.type-list li {
    padding: 5px 0;
}
