/* Awards Plugin – Basislayout */

.awards-profile-container,
.awards-category-items {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.award-item {
    width: 150px;
    height: 150px;
    box-sizing: border-box;
    padding: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 11px;
}

.award-item img {
    max-width: 100%;
    max-height: 100%;
    display: block;
}

.awards-overview .awards-category {
    margin-bottom: 20px;
}

.awards-overview .awards-category h2 {
    margin: 0 0 10px 0;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.award-self-button {
    margin-top: 4px;
    cursor: pointer;
}

/* Tabs für Awards-Übersicht */
.awards-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 0 0 10px 0;
    padding: 0;
    list-style: none;
}

.awards-tab {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 12px;
    background: var(--bg-color);
}

.awards-tab.active a {
    font-weight: bold;
	color: var(--text-color);
    border-bottom-width: 2px;
}
