/* Badge Container Styles */
.badge-container {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #ffffff, #e8e8e8);
    border-radius: 50%;
    box-shadow: 3px 4px 0 #444,
                3px 6px 0 #222,
                3px 8px 2px rgba(0, 0, 0, 0.5);
    padding: 20px;
    position: relative;
}

/* Badge Image Styles */
.badge-container img {
    width: 100%;
    height: 100%;
    max-width: 80px;
    max-height: 80px;
    object-fit: contain;
}

/* Badge Grid Layout */
.badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 30px;
    padding: 20px;
}

/* Individual Badge Item */
.badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.badge-name {
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    color: var(--off-yellow);
    margin-top: 10px;
}

.badge-description {
    font-size: 12px;
    text-align: center;
    color: var(--off-white);
    max-width: 150px;
}

/* Small Size Variant */
.badge-container.small {
    width: 80px;
    height: 80px;
    padding: 15px;
}

.badge-container.small img {
    max-width: 50px;
    max-height: 50px;
}