.discordbot-badges-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.discordbot-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 12px;
    border-radius: 8px;
    background: linear-gradient(135deg, #7289da 0%, #99aab5 100%);
    color: white;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    transition: background 0.3s ease;
}

.discordbot-badge:hover {
    background: linear-gradient(135deg, #99aab5 0%, #7289da 100%);
}

.discordbot-default-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: white;
    border-radius: 50%;
    color: #7289da;
    font-size: 18px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    line-height: 28px;
}

.discordbot-avatar {
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    width: 28px;
    height: 28px;
    object-fit: cover;
}

.discordbot-name {
    line-height: 1;
}